diff options
| author | Marek Vasut <[email protected]> | 2026-03-30 01:15:16 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-02 11:13:16 -0600 |
| commit | 91c27b21b10f6cadc906af66355197e12409a543 (patch) | |
| tree | 69a7e7c314ed3d23210a9c5f5ca8ac930d0cca78 | |
| parent | 39214eb49b62c161796413f64a64c96e177c3bd8 (diff) | |
arm: relocate: Make data-only relocation mode non-user-configurable
The data only relocation mode should be selected on per-SoC or per-core
basis, make these options non-user-configurable. The SoC or cores which
require this have to select this option using "default" keyword.
Fixes: d9eee3d17882 ("arm: relocate: Introduce data-only relocation mode")
Signed-off-by: Marek Vasut <[email protected]>
| -rw-r--r-- | Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -475,7 +475,7 @@ config SKIP_RELOCATE limited RAM to run U-Boot. config SKIP_RELOCATE_CODE - bool "Skips relocation of U-Boot code to end of RAM" + bool help Skips relocation of U-Boot code to the end of RAM, but still does relocate data to the end of RAM. This is mainly meant to relocate @@ -484,7 +484,7 @@ config SKIP_RELOCATE_CODE This split configuration is present on various secure cores. config SKIP_RELOCATE_CODE_DATA_OFFSET - hex "Offset of read-write data memory from read-only text memory" + hex default 0x0 depends on SKIP_RELOCATE_CODE help |
