summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-07-11 00:37:51 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:03:37 +0100
commit1985ada3a9cd98bd467450f977111c7b53f6744d (patch)
tree5dd148ecfd26cf357902490880b871d132aba7b1
parent22f8d1cf181ca98d9c9932097cb4c2814339b0a4 (diff)
downloadvyos-live-build-1985ada3a9cd98bd467450f977111c7b53f6744d.tar.gz
vyos-live-build-1985ada3a9cd98bd467450f977111c7b53f6744d.zip
Correct d-i kernel and initrd locations in grub entries. Thanks to Jun NOGATA <nogajun@gmail.com> for the patch. (Closes: #490245)
-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}"