diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-28 08:17:28 +0000 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-23 15:08:07 +0200 |
commit | 554a8d11088181e666a04558230e94b19f32f2d6 (patch) | |
tree | 2130533ea8bdee71bd24aef01cfc351cadb4a23a /scripts/build | |
parent | 9b70092f259ae3ff309b31178b845ce2f92f2d76 (diff) | |
download | vyos-live-build-554a8d11088181e666a04558230e94b19f32f2d6.tar.gz vyos-live-build-554a8d11088181e666a04558230e94b19f32f2d6.zip |
tidy up grub bootloader compatibility checking
- add a validation check where an error will be printed
- replace the check done in the grub scripts with one that simple exits
if executed bypassing the validation check
Gbp-Dch: Short
Diffstat (limited to 'scripts/build')
-rwxr-xr-x | scripts/build/binary_grub-efi | 13 | ||||
-rwxr-xr-x | scripts/build/binary_grub-legacy | 27 | ||||
-rwxr-xr-x | scripts/build/binary_grub-pc | 13 |
3 files changed, 18 insertions, 35 deletions
diff --git a/scripts/build/binary_grub-efi b/scripts/build/binary_grub-efi index 90e25e4fb..d1a9ff91d 100755 --- a/scripts/build/binary_grub-efi +++ b/scripts/build/binary_grub-efi @@ -21,6 +21,10 @@ USAGE="${PROGRAM} [--force]" # Processing arguments and configuration files Init_config_data "${@}" +if In_list "${LIVE_IMAGE_TYPE}" hdd netboot; then + exit 0 +fi + Check_Any_Bootloader_Role "grub-efi" Echo_message "Begin preparing Grub based EFI support..." @@ -38,15 +42,6 @@ Acquire_lockfile Check_architectures amd64 i386 arm64 armhf Check_crossarchitectures -# Setting destination directory -case "${LIVE_IMAGE_TYPE}" in - hdd|netboot) - Echo_warning "Bootloader in this image type not yet supported by live-build." - Echo_error "This would produce a not bootable image, aborting (FIXME)." - exit 1 - ;; -esac - # Checking depends case "${LB_ARCHITECTURES}" in amd64|i386) diff --git a/scripts/build/binary_grub-legacy b/scripts/build/binary_grub-legacy index 39e59d437..7891bba65 100755 --- a/scripts/build/binary_grub-legacy +++ b/scripts/build/binary_grub-legacy @@ -21,6 +21,10 @@ USAGE="${PROGRAM} [--force]" # Processing arguments and configuration files Init_config_data "${@}" +if In_list "${LIVE_IMAGE_TYPE}" hdd netboot; then + exit 0 +fi + Check_First_Bootloader_Role "grub-legacy" Echo_message "Begin installing grub-legacy..." @@ -103,27 +107,16 @@ case "${LB_INITRAMFS}" in esac # Setting destination directory -case "${LIVE_IMAGE_TYPE}" in - iso|iso-hybrid|tar) - case "${LB_INITRAMFS}" in - live-boot) - DESTDIR_LIVE="binary/live" - ;; - - *) - DESTDIR_LIVE="binary/boot" - ;; - esac - - DESTDIR_INSTALL="binary/install" +case "${LB_INITRAMFS}" in + live-boot) + DESTDIR_LIVE="binary/live" ;; - hdd|netboot) - Echo_warning "Bootloader in this image type not yet supported by live-build." - Echo_error "This would produce a not bootable image, aborting (FIXME)." - exit 1 + *) + DESTDIR_LIVE="binary/boot" ;; esac +DESTDIR_INSTALL="binary/install" # Creating directory mkdir -p "${DESTDIR_LIVE}" diff --git a/scripts/build/binary_grub-pc b/scripts/build/binary_grub-pc index 4549d3b41..85074a486 100755 --- a/scripts/build/binary_grub-pc +++ b/scripts/build/binary_grub-pc @@ -21,6 +21,10 @@ USAGE="${PROGRAM} [--force]" # Processing arguments and configuration files Init_config_data "${@}" +if In_list "${LIVE_IMAGE_TYPE}" hdd netboot; then + exit 0 +fi + Check_Any_Bootloader_Role "grub-pc" Echo_message "Begin installing grub-pc..." @@ -47,15 +51,6 @@ Restore_package_cache binary # Installing depends Install_package -# Setting destination directory -case "${LIVE_IMAGE_TYPE}" in - hdd|netboot) - Echo_warning "Bootloader in this image type not yet supported by live-build." - Echo_error "This would produce a not bootable image, aborting (FIXME)." - exit 1 - ;; -esac - # Copying templates mkdir -p binary/boot/grub/i386-pc |