summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fstab.py2
-rw-r--r--lilo.py2
-rw-r--r--silo.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/fstab.py b/fstab.py
index 93b6f7bff..6328775e5 100644
--- a/fstab.py
+++ b/fstab.py
@@ -175,7 +175,7 @@ class Fstab:
boothd = self.getMbrDevice()
(drives, raid) = self.partitionList()
- for (dev, devName, type, start, size, maxcyl) in drives:
+ for (dev, devName, type, start, size, maxcyl, preexist) in drives:
if dev == bootpart:
log ("maxcyl of %s is %d" % (dev, maxcyl))
return maxcyl
diff --git a/lilo.py b/lilo.py
index 0d06a96df..ac61d3c82 100644
--- a/lilo.py
+++ b/lilo.py
@@ -167,7 +167,7 @@ class LiloConfiguration:
self.liloImages = {}
foundDos = 0
- for (dev, devName, fsType, start, size, maxcyl) in drives:
+ for (dev, devName, fsType, start, size, maxcyl, preexist) in drives:
# ext2 and raid partitions get listed if they're / -- we do
# not allow non-mounted partitions to be booted anymore as
# modules are so unlikely to work out as to be not worth
diff --git a/silo.py b/silo.py
index d4b7071d1..1344b8664 100644
--- a/silo.py
+++ b/silo.py
@@ -102,7 +102,7 @@ class SiloInstall:
self.siloImages = {}
nSolaris = 0
nSunOS = 0
- for (dev, devName, type, start, size, maxcyl) in drives:
+ for (dev, devName, type, start, size, maxcyl, preexist) in drives:
# ext2 and raid partitions get listed if
# 1) they're /
# 2) they're not mounted
@@ -152,7 +152,7 @@ class SiloInstall:
i = i - 1
boothd = bootpart[:i+1]
(drives, raid) = fstab.partitionList()
- for (dev, devName, type, start, size, maxcyl) in drives:
+ for (dev, devName, type, start, size, maxcyl, preexist) in drives:
i = len (dev) - 1
while i > 0 and dev[i] in string.digits:
i = i - 1