diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-01-22 03:14:46 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-02-20 23:16:05 +0000 |
commit | e33f120cb808b946f3052019c9e4cf54b086491a (patch) | |
tree | dbecbb760e60c2ae5cf6c2f494f98d75e68a8fe6 /payloads/external/GRUB2 | |
parent | 3934198418fe75e15a05a0031cc28fe211304c22 (diff) | |
download | coreboot-e33f120cb808b946f3052019c9e4cf54b086491a.tar.xz |
payloads/external/GRUB2: Build only for supported architectures
GRUB2 doesn't support all architectures that coreboot supports.
Furthermore, coreboot's build script for GRUB2 doesn't support all of
these architectures.
Let the user select GRUB2 only when building for x86 and ARM, which are
known to work.
Change-Id: I5ef2020b2acb4cd008a57a2372734674f8b84a36
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/23171
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'payloads/external/GRUB2')
-rw-r--r-- | payloads/external/GRUB2/Kconfig.name | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/external/GRUB2/Kconfig.name b/payloads/external/GRUB2/Kconfig.name index cf23cf8ea9..fe60d76dc3 100644 --- a/payloads/external/GRUB2/Kconfig.name +++ b/payloads/external/GRUB2/Kconfig.name @@ -1,5 +1,6 @@ config PAYLOAD_GRUB2 bool "GRUB2" + depends on ARCH_X86 || ARCH_ARM help Select this option if you want to build a coreboot image with a GRUB2 payload. If you don't know what this is |