summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-06-22 00:34:45 +0000
committerJeremy Katz <katzj@redhat.com>2001-06-22 00:34:45 +0000
commit3d9b4eb0c7cd5f6525f5a7290ab84044c15157ee (patch)
treeb5c1b1e484438e7364249b66b827e3b4ecdcfc8e /bootloader.py
parent1ae907536a183e722cc92a82459a1514f3770237 (diff)
downloadanaconda-3d9b4eb0c7cd5f6525f5a7290ab84044c15157ee.tar.gz
anaconda-3d9b4eb0c7cd5f6525f5a7290ab84044c15157ee.tar.xz
anaconda-3d9b4eb0c7cd5f6525f5a7290ab84044c15157ee.zip
misc fixes
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader.py b/bootloader.py
index f4096e880..c04751976 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -110,7 +110,7 @@ class x86BootloaderInfo:
bootDev = fsset.getEntryByMountPoint("/boot")
grubPath = "/grub"
- cfPath = ""
+ cfPath = "/"
if not bootDev:
bootDev = fsset.getEntryByMountPoint("/")
grubPath = "/boot/grub"
@@ -143,7 +143,7 @@ class x86BootloaderInfo:
for (label, device) in chainList:
f.write('title %s (%s)\n' % (label, version))
f.write('\trootnoverify %s\n' % grubbyPartitionName(device))
- f.write('\tmakeactive')
+ f.write('\tmakeactive\n')
f.write('\tchainloader +1')
f.write('\n')