summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-07-11 00:37:51 +0100
committerChris Lamb <chris@chris-lamb.co.uk>2008-07-11 00:37:51 +0100
commit03ad96281ef1919325d5febfefc04d38870c8371 (patch)
tree5dd148ecfd26cf357902490880b871d132aba7b1 /helpers
parent3aa34e3461baa90ff4af76b1af36e8afda16d65e (diff)
downloadvyos-live-build-03ad96281ef1919325d5febfefc04d38870c8371.tar.gz
vyos-live-build-03ad96281ef1919325d5febfefc04d38870c8371.zip
Correct d-i kernel and initrd locations in grub entries. Thanks to Jun NOGATA <nogajun@gmail.com> for the patch. (Closes: #490245)
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-xhelpers/lh_binary_grub8
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_binary_grub b/helpers/lh_binary_grub
index 2cedaa43c..408b48de4 100755
--- a/helpers/lh_binary_grub
+++ b/helpers/lh_binary_grub
@@ -218,12 +218,12 @@ then
LINUX_LIVE="title\t\tLive:\nroot\n\n${LINUX_LIVE}"
LINUX_INSTALL="title\t\tInstaller:\nroot"
- VMLINUZ_DI="vmlinuz"
- INITRD_DI="initrd.gz"
+ VMLINUZ_DI="install/vmlinuz"
+ INITRD_DI="install/initrd.gz"
APPEND_DI="vga=normal"
- VMLINUZ_GI="gtk/vmlinuz"
- INITRD_GI="gtk/initrd.gz"
+ VMLINUZ_GI="install/gtk/vmlinuz"
+ INITRD_GI="install/gtk/initrd.gz"
APPEND_GI="video=vesa:ywrap,mtrr vga=788"
Grub_install_entry "install" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"