diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-11 22:56:00 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-11 22:56:00 +0000 |
commit | 5c96939d1b033a744cb9ad64416f188eadcf6eb8 (patch) | |
tree | 8106ea7c804158fb53a80a4a31ea19a6deb4080f /lilo.py | |
parent | 8ce4df95abe673ffa8b76c5f8957a45d1aa05c52 (diff) | |
download | anaconda-5c96939d1b033a744cb9ad64416f188eadcf6eb8.tar.gz anaconda-5c96939d1b033a744cb9ad64416f188eadcf6eb8.tar.xz anaconda-5c96939d1b033a744cb9ad64416f188eadcf6eb8.zip |
Made two different calls to get maxcyl of partitions, one for reading from drive directly, the other for getting it from the ddruid object. Added one entity to tuple returned from partitionList(), fixed up code to reflect change
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -275,9 +275,9 @@ class LiloConfiguration: useLBA32 = 0 if self.edd: from log import log - maxcyl = fstab.getBootPartitionMaxCyl() + maxcyl = fstab.getBootPartitionMaxCylFromDrive() if maxcyl > 1023: - log("Using lba32") + log("Maximum cyling is %d, using lba32" % maxcyl) useLBA32 = 1 if (self.liloDevice == "mbr"): |