summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"