diff options
author | Martin Roth <martinroth@google.com> | 2015-12-11 12:24:33 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-18 20:53:42 +0100 |
commit | dbae4d03ef6f1915a9508116e1bc9777f4ba33ec (patch) | |
tree | c3e80fb4395087c734a3bcba65120805bb966296 /payloads/external/U-Boot/Kconfig.name | |
parent | 654fd0703ad8f785faa49b22bf59036c6eb47f6c (diff) |
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/external/U-Boot/Kconfig.name')
-rw-r--r-- | payloads/external/U-Boot/Kconfig.name | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/payloads/external/U-Boot/Kconfig.name b/payloads/external/U-Boot/Kconfig.name new file mode 100644 index 0000000000..2e6a64c2ad --- /dev/null +++ b/payloads/external/U-Boot/Kconfig.name @@ -0,0 +1,11 @@ +config PAYLOAD_UBOOT + bool "U-Boot (Experimental)" + depends on ARCH_X86 + help + Select this option if you want to build a coreboot image + with a U-Boot payload. + + See http://coreboot.org/Payloads and U-Boot's documentation + at http://git.denx.de/?p=u-boot.git;a=blob;f=doc/README.x86 + for more information. + |