diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-04-29 07:52:56 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-04-29 07:52:56 +0200 |
commit | 7e633e77f24b6f5ab9a8b22d7d6cf6521454d638 (patch) | |
tree | c4a11950037f0e66cd79e00761302f8cc8acfb76 /scripts/build/binary_grub | |
parent | 7f6b1d71f8f6c66a78ba88f19cf12c035476f4ef (diff) | |
download | vyos-live-build-7e633e77f24b6f5ab9a8b22d7d6cf6521454d638.tar.gz vyos-live-build-7e633e77f24b6f5ab9a8b22d7d6cf6521454d638.zip |
Moving grub and grub2 templates into shared bootloader config directory.
Diffstat (limited to 'scripts/build/binary_grub')
-rwxr-xr-x | scripts/build/binary_grub | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/scripts/build/binary_grub b/scripts/build/binary_grub index bde738023..008ce8292 100755 --- a/scripts/build/binary_grub +++ b/scripts/build/binary_grub @@ -117,6 +117,20 @@ Grub_install_entry () done } +if [ -e "config/bootloaders/grub" ] +then + # Internal local copy + _SOURCE="config/bootloaders/grub" +else + # Internal system copy + if [ -n "${LIVE_BUILD}" ] + then + _SOURCE="${LIVE_BUILD}/share/bootloaders/grub" + else + _SOURCE="/usr/share/live/build/bootloaders/grub" + fi +fi + case "${LB_INITRAMFS}" in casper) INITFS="casper" @@ -238,7 +252,7 @@ fi # Copying templates mkdir -p binary/boot/grub -cp -r "${TEMPLATES}"/* binary/boot/grub +cp -r "${_SOURCE}"/* binary/boot/grub case ${LIVE_IMAGE_TYPE} in iso*) |