diff options
| author | Tom Rini <[email protected]> | 2026-05-29 14:04:00 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-05-29 14:04:00 -0600 |
| commit | ddd1f2192de473a05ff79b8e52a5b72cffd5ea79 (patch) | |
| tree | bec2b270566284ca57062267245533f7418f90b0 /include | |
| parent | 5151c208b56c6a954c121363ad33557046154b27 (diff) | |
| parent | 1ea8b3e8e2d6c80469b5f082cc5f2b9287a7ddf5 (diff) | |
Merge patch series "Update envs to use Kconfig values"
Anshul Dalal <[email protected]> says:
Some minor fixes to K3's env to avoid using hardcoded addresses but
instead move to Kconfig symbols.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/env/ti/k3_dfu.env | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/env/ti/k3_dfu.env b/include/env/ti/k3_dfu.env index b42cf21d986..1ae9ae6ae15 100644 --- a/include/env/ti/k3_dfu.env +++ b/include/env/ti/k3_dfu.env @@ -25,6 +25,9 @@ dfu_alt_info_ospi= rootfs raw 0x800000 0x3800000 dfu_alt_info_ram= - tispl.bin ram 0x80080000 0x200000; - u-boot.img ram 0x81000000 0x400000 +#if CONFIG_ARM64 + u-boot.img ram CONFIG_SPL_LOAD_FIT_ADDRESS 0x400000 +#else + tispl.bin ram CONFIG_SPL_LOAD_FIT_ADDRESS 0x200000 +#endif |
