summaryrefslogtreecommitdiffstats
path: root/milo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-07-06 15:58:23 +0000
committerMatt Wilson <msw@redhat.com>2000-07-06 15:58:23 +0000
commit638801acda477c2f4ada1d250ba104037dcb45ee (patch)
tree946ad7c175dfda1a1138cd3e0ef72778aa6bd8aa /milo.py
parentb63717ebc0c8e279385a3f1f7f397e5e208a1ccd (diff)
downloadanaconda-638801acda477c2f4ada1d250ba104037dcb45ee.tar.gz
anaconda-638801acda477c2f4ada1d250ba104037dcb45ee.tar.xz
anaconda-638801acda477c2f4ada1d250ba104037dcb45ee.zip
fix aboot
Diffstat (limited to 'milo.py')
-rw-r--r--milo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/milo.py b/milo.py
index 94de4596e..b19f8fc9b 100644
--- a/milo.py
+++ b/milo.py
@@ -91,7 +91,7 @@ class MiloInstall:
kernel = self.todo.hdList[package]
initrd = self.makeInitrd (tag, self.todo.instPath)
extra=""
- if os.access (instRoot + initrd, os.R_OK):
+ if os.access (self.todo.instPath + initrd, os.R_OK):
extra=" initrd=%s/%s" % (kernelprefix, initrd)
version = "%s-%s" % (kernel['version'], kernel['release'])
f.write ("%d:%d%svmlinuz-%s%s root=/dev/%s%s\n" %