summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-06-22 23:00:57 +0000
committerMike Fulbright <msf@redhat.com>2001-06-22 23:00:57 +0000
commita89bd7b706d6c35ac6971a386121bca364d86b6a (patch)
treea477d48ae05ca1585ec0e3155ec2e180577abe9d /fsset.py
parent30f6d8f09e73552510fec27d1a6a9970827d4e61 (diff)
downloadanaconda-a89bd7b706d6c35ac6971a386121bca364d86b6a.tar.gz
anaconda-a89bd7b706d6c35ac6971a386121bca364d86b6a.tar.xz
anaconda-a89bd7b706d6c35ac6971a386121bca364d86b6a.zip
make swap a native linux fs
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fsset.py b/fsset.py
index 42c583670..af5a8804f 100644
--- a/fsset.py
+++ b/fsset.py
@@ -269,7 +269,7 @@ class raidMemberDummyFileSystem(FileSystemType):
self.partedPartitionFlags = [ parted.PARTITION_RAID ]
self.formattable = 1
self.checked = 0
- self.linuxnativefs = 0
+ self.linuxnativefs = 1
self.name = "software raid component"
self.maxSize = 4 * 1024 * 1024
self.supported = 1
@@ -289,6 +289,7 @@ class swapFileSystem(FileSystemType):
self.formattable = 1
self.name = "swap"
self.maxSize = 2 * 1024
+ self.linuxnativefs = 1
self.supported = 1
def mount(self, device, mountpoint):