Antonello Dettori (dev@dettori.io) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15954
-gerrit
commit 6be547f21267cdcb68fbcfe40ac55bc930f814af Author: Antonello Dettori dev@dettori.io Date: Mon Jul 25 14:23:46 2016 +0200
payloads: add Kconfig option for bayou
Add an option to add bayou as the primary payload.
Change-Id: I8c0164344537b82870198b13ef6fdf20e7d095ef Signed-off-by: Antonello Dettori dev@dettori.io --- payloads/Kconfig | 8 ++++++++ 1 file changed, 8 insertions(+)
diff --git a/payloads/Kconfig b/payloads/Kconfig index 8cce778..7700631 100644 --- a/payloads/Kconfig +++ b/payloads/Kconfig @@ -25,12 +25,20 @@ config PAYLOAD_ELF You will be able to specify the location and file name of the payload image later.
+config PAYLOAD_BAYOU + bool "Bayou" + help + Select this option if you want to set bayou as your primary + payload. + source "payloads/external/*/Kconfig.name"
endchoice
source "payloads/external/*/Kconfig"
+source "payloads/bayou/Kconfig" + config PAYLOAD_FILE string "Payload path and filename" depends on PAYLOAD_ELF