diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-04 22:35:03 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-11 21:44:53 (GMT) |
commit | e7a815f32e187480236727393459d205e87ab780 (patch) | |
tree | d85e305129b81f5e0e56bef52dd8bc547a542211 /cmd/Kconfig | |
parent | 1aa4e8d0dead107ea28e5b90a3af07b753b17960 (diff) | |
download | u-boot-fsl-qoriq-e7a815f32e187480236727393459d205e87ab780.tar.xz |
Convert CONFIG_CMD_ZBOOT to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_ZBOOT
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index b80aff9..fbedf98 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -312,6 +312,18 @@ config CMD_THOR_DOWNLOAD There is no documentation about this within the U-Boot source code but you should be able to find something on the interwebs. +config CMD_ZBOOT + bool "zboot - x86 boot command" + help + With x86 machines it is common to boot a bzImage file which + contains both a kernel and a setup.bin file. The latter includes + configuration information from the dark ages which x86 boards still + need to pick things out of. + + Consider using FIT in preference to this since it supports directly + booting both 32- and 64-bit kernels, as well as secure boot. + Documentation is available in doc/uImage.FIT/x86-fit-boot.txt + endmenu menu "Environment commands" |