From 9a0677eafd7c725bd3c92e7bafc2cd313eb50d53 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 30 Nov 2021 18:31:19 +0000 Subject: fix incorrect logic on recent grub optimization patch or was used, instead of and --- resources/scripts/build/boot/roms_helper | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'resources/scripts') diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper index fdb938ad..09ab65f5 100755 --- a/resources/scripts/build/boot/roms_helper +++ b/resources/scripts/build/boot/roms_helper @@ -65,10 +65,10 @@ payload_memtest="n" # Override the above defaults using board.cfg source "resources/coreboot/${board}/board.cfg" -if [ "${grub_scan_disk}" != "both" ] || \ - [ "${grub_scan_disk}" != "ata" ] || \ +if [ "${grub_scan_disk}" != "both" ] && \ + [ "${grub_scan_disk}" != "ata" ] && \ [ "${grub_scan_disk}" != "ahci" ]; then - printf "build/roms: Target %s 's grub_scan_disk variable: unvalid value. Skipping build.\n" "${board}" + printf "build/roms: Target %s 's grub_scan_disk variable: invalid value. Skipping build.\n" "${board}" exit 1 fi -- cgit v1.2.1