From c87b6f63698d24e67c04e26a9e95a454c597d1ba Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 30 Nov 2021 18:35:52 +0000 Subject: build/boot/roms: don't error out if grub_scan_disk is invalid just set it to the default, instead --- resources/scripts/build/boot/roms_helper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/scripts') diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper index 09ab65f5..c01bc0d0 100755 --- a/resources/scripts/build/boot/roms_helper +++ b/resources/scripts/build/boot/roms_helper @@ -68,8 +68,8 @@ source "resources/coreboot/${board}/board.cfg" if [ "${grub_scan_disk}" != "both" ] && \ [ "${grub_scan_disk}" != "ata" ] && \ [ "${grub_scan_disk}" != "ahci" ]; then - printf "build/roms: Target %s 's grub_scan_disk variable: invalid value. Skipping build.\n" "${board}" - exit 1 + grub_scan_disk="both" + # erroring out would be silly. just use the default fi if [ "${cbtree}" = "undefined" ]; then -- cgit v1.2.1