summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-01-19 15:44:12 +0000
committerMatt Wilson <msw@redhat.com>2000-01-19 15:44:12 +0000
commit32cf0ad5b7185b8671d6ce56ac4e69782cd3abf8 (patch)
tree473e01a4b55e6b189858759909f036eb9c9a51f5 /fstab.py
parentcfbe1783a5d9602560cbc407f68202ab00b4ae2a (diff)
downloadanaconda-32cf0ad5b7185b8671d6ce56ac4e69782cd3abf8.tar.gz
anaconda-32cf0ad5b7185b8671d6ce56ac4e69782cd3abf8.tar.xz
anaconda-32cf0ad5b7185b8671d6ce56ac4e69782cd3abf8.zip
check for boot device properly on alpha
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fstab.py b/fstab.py
index 8982316bf..6293a5d47 100644
--- a/fstab.py
+++ b/fstab.py
@@ -339,7 +339,7 @@ class Fstab:
# FORCE the partition that MILO has to read
# to have 1024 block size. It's the only
# thing that our milo seems to read.
- if arch == "alpha" and mntpoint == bootPart:
+ if arch == "alpha" and device == bootPart:
args = args + ["-b", "1024"]
# set up raid options for md devices.
if device[:2] == 'md':