diff options
Diffstat (limited to 'scripts/build/binary_grub2')
-rwxr-xr-x | scripts/build/binary_grub2 | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/scripts/build/binary_grub2 b/scripts/build/binary_grub2 index 61f5dc6e0..926df668e 100755 --- a/scripts/build/binary_grub2 +++ b/scripts/build/binary_grub2 @@ -91,6 +91,20 @@ Grub_install_entry () LINUX_INSTALL="${LINUX_INSTALL}\n}" } +if [ -e "config/bootloaders/grub2" ] +then + # Internal local copy + _SOURCE="config/bootloaders/grub2" +else + # Internal system copy + if [ -n "${LIVE_BUILD}" ] + then + _SOURCE="${LIVE_BUILD}/share/bootloaders/grub2" + else + _SOURCE="/usr/share/live/build/bootloaders/grub2" + fi +fi + case "${LB_INITRAMFS}" in casper) INITFS="casper" @@ -211,7 +225,7 @@ fi # Copying templates mkdir -p binary/boot/grub/i386-pc -cp -r "${TEMPLATES}"/* binary/boot/grub +cp -r "${_SOURCE}"/* binary/boot/grub case ${LIVE_IMAGE_TYPE} in iso*) |