diff options
author | Daniel Baumann <daniel@debian.org> | 2011-06-03 11:56:42 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-06-03 11:56:42 +0200 |
commit | 69f2cc5ee5c28e3f54c1ed83d231ed5a55242ff7 (patch) | |
tree | 29c0fe7dd392ecbc1b101c5bfcf9ac98415fccc5 /scripts | |
parent | 338ebe5e6b432cdf8777e55b1ef538faa573b33c (diff) | |
download | vyos-live-build-69f2cc5ee5c28e3f54c1ed83d231ed5a55242ff7.tar.gz vyos-live-build-69f2cc5ee5c28e3f54c1ed83d231ed5a55242ff7.zip |
Updating grub paths for d-i files (Closes: #627695).
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/lb_binary_grub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/lb_binary_grub b/scripts/build/lb_binary_grub index d796750d9..ee14bd900 100755 --- a/scripts/build/lb_binary_grub +++ b/scripts/build/lb_binary_grub @@ -243,12 +243,12 @@ then INITRD_GI="install/gtk/initrd.gz" APPEND_GI="video=vesa:ywrap,mtrr vga=788" - if [ -f "binary/boot/${VMLINUZ_DI}" ] && [ -f "binary/boot/${INITRD_DI}" ] + if [ -f "binary/${VMLINUZ_DI}" ] && [ -f "binary/${INITRD_DI}" ] then Grub_install_entry "Text" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}" fi - if [ -f "binary/boot/${VMLINUZ_GI}" ] && [ -f "binary/boot/${INITRD_GI}" ] + if [ -f "binary/${VMLINUZ_GI}" ] && [ -f "binary/${INITRD_GI}" ] then Grub_install_entry "GUI" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}" fi |