diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2005-10-20 21:43:51 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2005-10-20 21:43:51 +0000 |
commit | 22814387ea4cd064dbdb59817b62b90b796c8944 (patch) | |
tree | f223727b5e8236ed3721f3c0159947e482e23703 /fsset.py | |
parent | 2ab5a5a579185eb85cf1ed8ef755a7226feec5cf (diff) | |
download | anaconda-22814387ea4cd064dbdb59817b62b90b796c8944.tar.gz anaconda-22814387ea4cd064dbdb59817b62b90b796c8944.tar.xz anaconda-22814387ea4cd064dbdb59817b62b90b796c8944.zip |
Treat PReP partitions as native
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -889,9 +889,11 @@ class prepbootFileSystem(FileSystemType): # supported for use on the pseries if (iutil.getPPCMachine() == "pSeries" or iutil.getPPCMachine() == "iSeries"): + self.linuxnativefs = 1 self.supported = 1 self.formattable = 1 else: + self.linuxnativefs = 0 self.supported = 0 self.formattable = 0 |