summaryrefslogtreecommitdiff
path: root/scripts/build/binary_grub-pc
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-05-04 14:28:37 +0100
committerLyndon Brown <jnqnfe@gmail.com>2020-05-04 21:40:13 +0100
commit3f840aeeba982a858a881271a3bb48bca5b50dd8 (patch)
tree028cabca052c064e2bb566dbdaee78a05422f505 /scripts/build/binary_grub-pc
parentf3a818da9ab1998944c20b0847a733bbdacb61d8 (diff)
downloadvyos-live-build-3f840aeeba982a858a881271a3bb48bca5b50dd8.tar.gz
vyos-live-build-3f840aeeba982a858a881271a3bb48bca5b50dd8.zip
fully validate BIOS/EFI bootloader combinations
thus far, config bootloader validation only did the basic check that each bootloader specified was a known and supported bootloader, it did not check combinations. it now checks combinations, and strips out the previous "bootloader role" stuff. the no-bootloaders warning is duplicated, covering two slightly different situations (empty string, and whitespace string). this is anticipated to be just temporary, with this just being the first step in better handling bootloader selections. Gbp-Dch: Short
Diffstat (limited to 'scripts/build/binary_grub-pc')
-rwxr-xr-xscripts/build/binary_grub-pc6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/build/binary_grub-pc b/scripts/build/binary_grub-pc
index cd385ead2..ac6fd04a1 100755
--- a/scripts/build/binary_grub-pc
+++ b/scripts/build/binary_grub-pc
@@ -21,11 +21,13 @@ USAGE="${PROGRAM} [--force]"
# Processing arguments and configuration files
Init_config_data "${@}"
-if In_list "${LB_IMAGE_TYPE}" hdd netboot; then
+if ! In_list "grub-pc" $LB_BOOTLOADERS; then
exit 0
fi
-Check_Any_Bootloader_Role "grub-pc"
+if In_list "${LB_IMAGE_TYPE}" hdd netboot; then
+ exit 0
+fi
Echo_message "Begin installing grub-pc..."