diff options
| author | Tom Rini <[email protected]> | 2025-08-11 11:58:25 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-08-11 11:58:25 -0600 |
| commit | 6d3382fad32baa0c09d43b526c99ea75838b3ca8 (patch) | |
| tree | c490023305a1557a0ab86a81d016c47e2383ebe3 /env | |
| parent | 83ce0b483c1680cb39565a9d91c6ef113a309c38 (diff) | |
arm: socfpga: Correct how we set BOOTFILE
In order to set the BOOTFILE symbol we first need to have USE_BOOTFILE
be set, or some of the logic might not work as expected later on when
building. Second, defaults like this belong with the symbol itself.
Fixes: da595d236b97 ("include: configs: soc64: Use CONFIG_SPL_ATF to differentiate bootfile")
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'env')
| -rw-r--r-- | env/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/env/Kconfig b/env/Kconfig index c667e8f2da1..1df7ebd547e 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -957,6 +957,7 @@ config USE_BOOTFILE config BOOTFILE string "'bootfile' environment variable value" + default kernel.itb if SPL_ATF && TARGET_SOCFPGA_SOC64 depends on USE_BOOTFILE help The value to set the "bootfile" variable to. |
