summaryrefslogtreecommitdiffstats
path: root/payloads/Kconfig
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2015-12-11 12:24:33 -0700
committerMartin Roth <martinroth@google.com>2016-02-18 20:53:42 +0100
commitdbae4d03ef6f1915a9508116e1bc9777f4ba33ec (patch)
treec3e80fb4395087c734a3bcba65120805bb966296 /payloads/Kconfig
parent654fd0703ad8f785faa49b22bf59036c6eb47f6c (diff)
downloadcoreboot-dbae4d03ef6f1915a9508116e1bc9777f4ba33ec.tar.gz
coreboot-dbae4d03ef6f1915a9508116e1bc9777f4ba33ec.tar.bz2
coreboot-dbae4d03ef6f1915a9508116e1bc9777f4ba33ec.zip
Payloads: Add U-Boot as a coreboot-payload
- Add Kconfig and Makefile options to use U-Boot as a payload. - Add Kconfig option for extra cbfstool command line arguments. - Add Kconfig & Makefile option to load the payload as a flat binary. - Add u-boot directory to .gitignore. This is currently working for X-86 only. Graphics worked in U-Boot correctly by initializing the VBIOS and setting up a console mode. Tested in QEMU and on Minnowboard Max. Got into U-Boot, have not booted an OS yet. Change-Id: Ia122a4ad7cd7d96107c1552b0376c8106ca8fb92 Signed-off-by: Martin Roth <martinroth@google.com> Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/12714 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/Kconfig')
-rw-r--r--payloads/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/payloads/Kconfig b/payloads/Kconfig
index 51c89eae4517..9037b30a67ac 100644
--- a/payloads/Kconfig
+++ b/payloads/Kconfig
@@ -47,5 +47,17 @@ config COMPRESSED_PAYLOAD_LZMA
In order to reduce the size payloads take up in the ROM chip
coreboot can compress them using the LZMA algorithm.
+config PAYLOAD_OPTIONS
+ string
+ default ""
+ help
+ Additional cbfstool options for the payload
+
+config PAYLOAD_IS_FLAT_BINARY
+ def_bool n
+ help
+ Add the payload to cbfs as a flat binary type instead of as an
+ elf payload
+
endmenu