diff options
author | Antonello Dettori <dev@dettori.io> | 2016-07-25 14:23:46 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-08-09 10:44:44 +0200 |
commit | 3d609325b9e793c2d817715ff8a4ce3cbeb92cec (patch) | |
tree | 1d2086cc51ec00c2ffa56ab3fa36ca4d2aff7255 /payloads/Kconfig | |
parent | 0c290a0c85a5928f8a64a00e115ef1e601d1573c (diff) |
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>
Reviewed-on: https://review.coreboot.org/15954
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Omar Pakker
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'payloads/Kconfig')
-rw-r--r-- | payloads/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/payloads/Kconfig b/payloads/Kconfig index 8cce778a9a..77006311d1 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 |