diff options
| author | Tom Rini <trini@konsulko.com> | 2026-02-26 13:56:45 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2026-02-26 13:57:41 -0600 |
| commit | acdf53bf7509a4f8aae8c9954dc6122ece013fd6 (patch) | |
| tree | 66f3be318af4e773a7c715103791a6a0a1cbf17f | |
| parent | 437ea9f8be5afaebe2d8cbab6242f1182857f21e (diff) | |
bloblist / handoff: Make this depend on BLOBLIST_FIXED
Currently, the only way we support passing a bloblist from one stage to
the next is via the BLOBLIST_FIXED mechanism. Update the Kconfig logic
to express this constraint.
Signed-off-by: Tom Rini <trini@konsulko.com>
| -rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 2998b7acb75..75f0a9de5af 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -229,7 +229,7 @@ source "common/spl/Kconfig.nxp" config HANDOFF bool "Pass hand-off information from SPL to U-Boot proper" - depends on BLOBLIST + depends on BLOBLIST_FIXED help It is useful to be able to pass information from SPL to U-Boot proper to preserve state that is known in SPL and is needed in U-Boot. |
