diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-06-23 19:02:38 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-06-23 19:02:38 +0000 |
commit | c8c0190205336f69c1a94f890a28a3e040565a97 (patch) | |
tree | e14cbf45307c02955d4e358dfb7e584026346953 /textw | |
parent | d1636e475e29facfa7c08db38d4845a9bfe682e7 (diff) | |
download | anaconda-c8c0190205336f69c1a94f890a28a3e040565a97.tar.gz anaconda-c8c0190205336f69c1a94f890a28a3e040565a97.tar.xz anaconda-c8c0190205336f69c1a94f890a28a3e040565a97.zip |
merge from taroon. highlights of this time around
* ppc boot constraints
* md5 endianness
* don't prompt to save tracebacks to a floppy without a floppy
* autopart for kickstart
* network configuration in the loader if vnc/display case
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 487daa725..33363b3c5 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -227,9 +227,10 @@ class PartitionWindow: rc = -1 else: rc = 0 - req = self.partitions.getBootableRequest() - if req: - req.ignoreBootConstraints = 1 + reqs = self.partitions.getBootableRequest() + if reqs: + for req in reqs: + req.ignoreBootConstraints = 1 self.populate() return rc |