diff options
| author | Tom Rini <[email protected]> | 2025-10-20 13:55:08 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-20 13:55:37 -0600 |
| commit | 0f865ab5d68484b4dc1724809de1be06edc85df1 (patch) | |
| tree | 3d7f4def7e59ccb9cbdba7b295fe2a8181fc4e14 /common | |
| parent | 7674ac9c820f994e1eb723d82e3ebb5de9d4c35b (diff) | |
spl: Restore args file being default in falcon mode
When falcon mode is enabled and SPL_OS_BOOT_SECURE is not enabled,
restore the previous default behavior of having an args file be
expected. Platforms which are using a FIT image here and do not need
this can update at their convenience to disable this option now.
Fixes: b1a3ed068869 ("spl: make args file optional in falcon mode")
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 0fe5db43d5d..24d6ce5d739 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1219,6 +1219,7 @@ config SPL_OS_BOOT_SECURE config SPL_OS_BOOT_ARGS bool "Allow SPL to load args for kernel in falcon mode" depends on (SPL_OS_BOOT || SPL_LOAD_FIT_OPENSBI_OS_BOOT) && !SPL_OS_BOOT_SECURE + default y if !SPL_OS_BOOT_SECURE help This option enables the SPL to load an args file (usually the FDT) alongside the kernel image in falcon boot mode. |
