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 | |
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')
-rwxr-xr-x | scripts/build/binary_grub | 16 | ||||
-rwxr-xr-x | scripts/build/binary_grub2 | 16 | ||||
-rwxr-xr-x | scripts/build/config | 12 |
3 files changed, 31 insertions, 13 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*) 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*) diff --git a/scripts/build/config b/scripts/build/config index 77f4029e0..5c0c92dd3 100755 --- a/scripts/build/config +++ b/scripts/build/config @@ -113,7 +113,6 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [--swap-file-path PATH]\n\ \t [--swap-file-size MB]\n\ \t [--tasksel apt|aptitude|tasksel]\n\ -\t [--templates PATH]\n\ \t [--updates true|false]\n\ \t [--backports true|false]\n\ \t [--verbose]\n\ @@ -130,7 +129,7 @@ Local_arguments () apt-pipeline:,apt-recommends:,apt-secure:,apt-source-archives:,bootstrap:,cache:,cache-indices:,cache-packages:, cache-stages:,debconf-frontend:,debconf-priority:,dump, initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,tasksel:, - templates:,architectures:,clean, + architectures:,clean, distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-binary:, parent-mirror-binary-security:,parent-mirror-debian-installer:, mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:, @@ -329,11 +328,6 @@ Local_arguments () shift 2 ;; - --templates) - LB_TEMPLATES="${2}" - shift 2 - ;; - # config/bootstrap -a|--architectures) LB_ARCHITECTURES="${2}" @@ -966,10 +960,6 @@ LB_SYSTEM="${LB_SYSTEM}" # (Default: ${LB_TASKSEL}) LB_TASKSEL="${LB_TASKSEL}" -# \$LB_TEMPLATES: set templates -# (Default: ${LB_TEMPLATES}) -LB_TEMPLATES="${LB_TEMPLATES}" - # live-build options # \$_BREAKPOINTS: enable breakpoints |