diff options
| author | Tom Rini <[email protected]> | 2025-01-15 17:34:26 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-01-15 19:27:14 -0600 |
| commit | 178f6ecb21fe12ada74a9a1a08093c812b15eea5 (patch) | |
| tree | 60dee6152b33cbd13f311875ce2fc8e9350a8c3d /cmd/Kconfig | |
| parent | e26a9ac4c6900cac2fa043ac50a3a3c038f4505d (diff) | |
| parent | a3d0fadca6b14f57477a4143334993daf52f89dc (diff) | |
Merge patch series "bootstd: Support recording images"
Simon Glass <[email protected]> says:
This series provides a way to keep track of the images used in bootstd,
including the type of each image.
At present this is sort-of handled by struct bootflow but in quite an
ad-hoc way. The structure has become quite large and is hard to query.
Future work will be able to reduce its size.
Ultimately the 'bootflow info' command may change to also show images as
a list, but that is left for later, as this series is already fairly
long. So for now, just introduce the concept and adjust bootstd to use
it, with a simple command to list the images.
This series includes various alist enhancements, to make use of this new
data structure a little easier.
[trini: Drop patch 18 and 19 for now due to size considerations]
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 4c4ad9d9979..1a0985ca479 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -328,6 +328,15 @@ config CMD_BOOTMETH This command is not necessary for bootstd to work. +config CMD_BOOTSTD + bool "bootstd" + depends on BOOTSTD + default y if BOOTSTD_FULL + help + Provide general information and control for bootstd. + + This command is not necessary for bootstd to work. + config BOOTM_EFI bool "Support booting UEFI FIT images" depends on EFI_BINARY_EXEC && CMD_BOOTM && FIT |
