diff options
| author | Tom Rini <[email protected]> | 2025-02-19 18:49:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-19 18:49:47 -0600 |
| commit | c33ccc87254c1efd2c445a04ed6dd3113641f99d (patch) | |
| tree | f864928aca43114fa4d01b62c839a60621bb1873 /common/Kconfig | |
| parent | 5e4031a5f6397542948bdc87f67477d7af6bcff1 (diff) | |
| parent | 03a76b1a737fc9cf511aa7520999968ec3d2fd78 (diff) | |
Merge patch series "bloblist: refactor xferlist and bloblist"
Tom Rini <[email protected]> says:
This small series separates "bloblist" and "standard passage" to allow
for these similar concepts to explore solutions to problems without
introduces breaking changes to the other.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'common/Kconfig')
| -rw-r--r-- | common/Kconfig | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/common/Kconfig b/common/Kconfig index 7b2db46ef06..1d6de8badf7 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -1066,11 +1066,15 @@ config BLOBLIST_ALLOC specify a fixed address on systems where this is unknown or can change at runtime. -config BLOBLIST_PASSAGE - bool "Use bloblist in-place" +config BLOBLIST_PASSAGE_MANDATORY + bool "Use bloblist in-place mandatorily" help - Use a bloblist in the incoming standard passage. The size is detected - automatically so CONFIG_BLOBLIST_SIZE can be 0. + By default U-Boot will use a bloblist in the incoming standard passage. + This option controls whether U-Boot tries to load a static bloblist or + allocate one if a valid incoming bloblist does not exist. + Select this option to mark incoming standard passage as mandatory and + U-Boot will report an error when a valid incoming bloblist does not + exist. endchoice @@ -1086,7 +1090,7 @@ config BLOBLIST_ADDR config BLOBLIST_SIZE hex "Size of bloblist" - default 0x0 if BLOBLIST_PASSAGE + default 0x0 if BLOBLIST_PASSAGE_MANDATORY default 0x400 help Sets the size of the bloblist in bytes. This must include all |
