summaryrefslogtreecommitdiff
path: root/payloads/Kconfig
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2018-07-09 10:42:41 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-07-10 09:53:12 +0000
commit209a1bf8cab6413d46399672c9ee402fc5971b54 (patch)
tree6d175ff1a82498726201f462c16a74974355c6b0 /payloads/Kconfig
parent88f81af1ef0d74ca2be865454cc801efe32a88af (diff)
downloadcoreboot-209a1bf8cab6413d46399672c9ee402fc5971b54.tar.xz
payloads/Kconfig: Put option *None* at the top
As *None* is special and not a payload, it makes sense to put it at the top. Also, it was at before the latest addition of the FIT payload choice. Fixes: a892cde6 (lib: Add FIT payload support) Change-Id: I52163ea9472308ecbc396012d9912b9617e0c318 Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/27414 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'payloads/Kconfig')
-rw-r--r--payloads/Kconfig22
1 files changed, 11 insertions, 11 deletions
diff --git a/payloads/Kconfig b/payloads/Kconfig
index ec581c0749..15d0417d35 100644
--- a/payloads/Kconfig
+++ b/payloads/Kconfig
@@ -8,17 +8,6 @@ choice
default PAYLOAD_NONE if NO_DEFAULT_PAYLOAD || !ARCH_X86
default PAYLOAD_SEABIOS if ARCH_X86
-config PAYLOAD_FIT
- bool "A FIT payload"
- select PAYLOAD_FIT_SUPPORT
- help
- Select this option if you have a payload image (a FIT file) which
- coreboot should run as soon as the basic hardware initialization
- is completed.
-
- You will be able to specify the location and file name of the
- payload image later.
-
config PAYLOAD_NONE
bool "None"
help
@@ -39,6 +28,17 @@ config PAYLOAD_ELF
You will be able to specify the location and file name of the
payload image later.
+config PAYLOAD_FIT
+ bool "A FIT payload"
+ select PAYLOAD_FIT_SUPPORT
+ help
+ Select this option if you have a payload image (a FIT file) which
+ coreboot should run as soon as the basic hardware initialization
+ is completed.
+
+ You will be able to specify the location and file name of the
+ payload image later.
+
config PAYLOAD_BAYOU
bool "Bayou"
help