On Tue, 2009-03-24 at 10:43 -0400, Chris Lumens wrote: > --- > storage/formats/fs.py | 17 +++++++++++++++++ > 1 files changed, 17 insertions(+), 0 deletions(-) Looks good. > > diff --git a/storage/formats/fs.py b/storage/formats/fs.py > index d3b7082..f53dd99 100644 > --- a/storage/formats/fs.py > +++ b/storage/formats/fs.py > @@ -1028,6 +1028,23 @@ class NFSv4(NFS): > > register_device_format(NFSv4) > > + > +class Iso9660FS(FS): > + """ ISO9660 filesystem. """ > + _type = "iso9660" > + _formattable = False > + _supported = True > + _resizable = False > + _bootable = False > + _linuxNative = False > + _dump = False > + _check = False > + _migratable = False > + _defaultMountOptions = ["ro"] > + > +register_device_format(Iso9660FS) > + > + > class NoDevFS(FS): > """ nodev filesystem base class """ > _type = "nodev" _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list