diff options
| author | Tom Rini <[email protected]> | 2024-04-10 13:49:35 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-04-10 13:49:35 -0600 |
| commit | ab3453e7b12daef47b9e91da2a2a3d48615dc6fc (patch) | |
| tree | b36ffe46f4e98d1145b75daa0f84dbc473701eb9 /cmd/Kconfig | |
| parent | 843143303cb64133427ab1b3166185e936233d50 (diff) | |
| parent | 8d24535e84856f9a881a9cd11d07842a42bc68a3 (diff) | |
Merge patch series "Complete decoupling of zboot logic from commands"
Simon Glass <[email protected]> says:
This series refactors the zboot code to allow it to be used with
CONFIG_COMMAND disabled.
A new zboot_run() function is used to boot a zimage.
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 61e280fb1a4..2e563541319 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -612,6 +612,8 @@ config THOR_RESET_OFF config CMD_ZBOOT bool "zboot - x86 boot command" + depends on ZBOOT + default y 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 |
