Change-Id: Iea569fd457b3cd1f4746fbc6a96319eb42733a6b Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80586 Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
25 lines
718 B
Plaintext
25 lines
718 B
Plaintext
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config PAYLOAD_GRUB2
|
|
bool "GRUB2"
|
|
depends on ARCH_X86 || ARCH_ARM
|
|
select PAYLOAD_BUILD_GRUB2
|
|
help
|
|
Select this option if you want to build a coreboot image
|
|
with a GRUB2 payload. If you don't know what this is
|
|
about, just leave it enabled.
|
|
|
|
See https://doc.coreboot.org/payloads.html for more information.
|
|
|
|
config PAYLOAD_SEAGRUB
|
|
bool "GRUB2 atop SeaBIOS"
|
|
depends on ARCH_X86
|
|
select PAYLOAD_BUILD_SEABIOS
|
|
select GRUB2_SECONDARY_PAYLOAD
|
|
help
|
|
Select this option if you want to build a coreboot image
|
|
with a GRUB2 payload running atop SeaBIOS to improve its
|
|
hardware compatibility.
|
|
|
|
See https://doc.coreboot.org/payloads.html for more information.
|