diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-23 21:35:07 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-23 21:35:07 +0000 |
commit | 9391b848bea6b9072b3343dbefc63a2515442201 (patch) | |
tree | 260a56e7d380cb27c6d23e2dc9b15b0d954a79ee /lilo.py | |
parent | efd917a7fb2596f375d9aea78599bb8b89dfeb11 (diff) | |
download | anaconda-9391b848bea6b9072b3343dbefc63a2515442201.tar.gz anaconda-9391b848bea6b9072b3343dbefc63a2515442201.tar.xz anaconda-9391b848bea6b9072b3343dbefc63a2515442201.zip |
make lba32 warning a dialog under GUI install, and fix off by one bug with endpoint (should be 1024, not 1023)
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -290,7 +290,7 @@ class LiloConfiguration: if self.edd: from log import log maxcyl = fstab.getBootPartitionMaxCylFromDrive() - if maxcyl > 1023: + if maxcyl > 1024: log("Maximum cylinder is %s, using lba32" % maxcyl) useLBA32 = 1 |