summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-01-23 21:35:07 +0000
committerMike Fulbright <msf@redhat.com>2001-01-23 21:35:07 +0000
commit9391b848bea6b9072b3343dbefc63a2515442201 (patch)
tree260a56e7d380cb27c6d23e2dc9b15b0d954a79ee /lilo.py
parentefd917a7fb2596f375d9aea78599bb8b89dfeb11 (diff)
downloadanaconda-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lilo.py b/lilo.py
index 0813b6bfa..fc497e178 100644
--- a/lilo.py
+++ b/lilo.py
@@ -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