diff options
| author | Simon Glass <[email protected]> | 2023-12-03 17:29:28 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-04-10 13:49:15 -0600 |
| commit | 80d4c987576070082ed27da88aed732d42396135 (patch) | |
| tree | eb8588681366d2f5f93595f47abb745b90779fac /cmd | |
| parent | bade0ac04b96d92642b3d433734cde2f00ab7fc5 (diff) | |
x86: zboot: Create a separate ZBOOT option for zboot logic
Most of the functionality of zboot is contained in the logic which
handles a zimage. Create a separate Kconfig for the logic so that it can
(later) be used without the command itself being enabled.
Enable ZBOOT by default on x86, with the command depending on that. The
existing 'imply' can therefore be removed.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 9ebea76c2ce..584ffd03968 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -538,6 +538,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 |
