summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-24 09:17:20 -0400
committerChris Lumens <clumens@redhat.com>2009-03-24 09:41:29 -0400
commit74df7604a2bfd0af0df3c60cffb4b5b0ab325cc8 (patch)
tree3ae4598cf79277edc61d2b492ecfed453a843306
parent90006d07e51d962fbb2f062bb202c6027832f55d (diff)
downloadanaconda-74df7604a2bfd0af0df3c60cffb4b5b0ab325cc8.tar.gz
anaconda-74df7604a2bfd0af0df3c60cffb4b5b0ab325cc8.tar.xz
anaconda-74df7604a2bfd0af0df3c60cffb4b5b0ab325cc8.zip
Add a format for ISO9660 filesystems.
-rw-r--r--storage/formats/fs.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index d3b708278..f53dd992d 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"