fix incorrect logic on recent grub optimization patch

or was used, instead of and
fsdg20230625
Leah Rowe 2021-11-30 18:31:19 +00:00
parent b74056563f
commit 9a0677eafd
1 changed files with 3 additions and 3 deletions

View File

@ -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