diff options
| author | Michal Simek <[email protected]> | 2025-09-17 09:54:06 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-26 16:46:26 -0600 |
| commit | c8a74db0cd2ae90720e81b55795cf2809762a995 (patch) | |
| tree | 16a5e5872b239f1109b1318b55254f972c3c0683 /arch | |
| parent | 14b784aaf2a96b0f597b4fc3c5a3b4cb70f18182 (diff) | |
arm: Change SYS_INIT_SP_BSS_OFFSET from int to hex
The most of OFFSET values are in hex instead of int which is easier for
layout description.
Signed-off-by: Michal Simek <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 625d2e995d2..4c2885fc981 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -68,10 +68,10 @@ config INIT_SP_RELATIVE SYS_INIT_SP_BSS_OFFSET. config SYS_INIT_SP_BSS_OFFSET - int "Early stack offset from the .bss base address" + hex "Early stack offset from the .bss base address" depends on ARM64 depends on INIT_SP_RELATIVE - default 524288 + default 0x80000 help This option's value is the offset added to &_bss_start in order to calculate the stack pointer. This offset should be large enough so |
