diff options
author | Erik Troan <ewt@redhat.com> | 1999-09-09 23:26:15 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-09-09 23:26:15 +0000 |
commit | ece6be7649e3bda60f8bb62fc8dfdb55e41a14ee (patch) | |
tree | 96d84fc8cb95a394d7ea69d86f6e9699c6e13c08 /iw | |
parent | dfb608910aac4778e8194425a3c51eed792e0442 (diff) | |
download | anaconda-ece6be7649e3bda60f8bb62fc8dfdb55e41a14ee.tar.gz anaconda-ece6be7649e3bda60f8bb62fc8dfdb55e41a14ee.tar.xz anaconda-ece6be7649e3bda60f8bb62fc8dfdb55e41a14ee.zip |
added software raid support
unfortunately, it's not not tested
Diffstat (limited to 'iw')
-rw-r--r-- | iw/rootpartition.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/iw/rootpartition.py b/iw/rootpartition.py index 83f35a18c..5330986c9 100644 --- a/iw/rootpartition.py +++ b/iw/rootpartition.py @@ -46,6 +46,15 @@ class PartitionWindow (InstallWindow): for (partition, mount, fsystem, size) in fstab: self.todo.addMount(partition, mount, fsystem) + (drives, raid) = self.todo.ddruid.partitionList() + print "drives", drives + print "raid", raid + + for (mount, device, other) in raid: + self.todo.addMount("/dev/" + device, mount, "ext2") + + print "self.todo.mounts", self.todo.mounts + return None def enableCallback (self, value): |