From 209a1bf8cab6413d46399672c9ee402fc5971b54 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Mon, 9 Jul 2018 10:42:41 +0200 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/27414 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: Angel Pons --- payloads/Kconfig | 22 +++++++++++----------- 1 file 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