roms: fix bad comparison in configure_target()
Signed-off-by: Leah Rowe <leah@libreboot.org>audit6
parent
3ee045f9ad
commit
d6ff009e20
|
@ -107,7 +107,7 @@ configure_target()
|
|||
[ -n "$uboot_config" ] || uboot_config="default"
|
||||
[ "$payload_uboot" = "y" ] || payload_seabios="y"
|
||||
[ "$payload_grub" = "y" ] && payload_seabios="y"
|
||||
[ "$payload_seabios" = "y" ] && [ -n "$payload_uboot" = "y" ] && \
|
||||
[ "$payload_seabios" = "y" ] && [ "$payload_uboot" = "y" ] && \
|
||||
$err "$board: U-Boot and SeaBIOS/GRUB are both enabled."
|
||||
|
||||
[ -z "$grub_scan_disk" ] && grub_scan_disk="nvme ahci ata"
|
||||
|
|
Loading…
Reference in New Issue