From 7f6d5c72aadc5442eff7aaf12f67fcc89849279a Mon Sep 17 00:00:00 2001 From: julia Date: Wed, 5 Feb 2025 11:09:01 +1100 Subject: [PATCH] riscv: remove breakpoint_stack from linker script Presumably, this was copied from the common_arm.lds linker script, but it was a particular implementation detail of the arm32 code, and is unneeded on RISC-V. Signed-off-by: julia --- src/arch/riscv/common_riscv.lds | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/arch/riscv/common_riscv.lds b/src/arch/riscv/common_riscv.lds index b45368c6d..d712df35e 100644 --- a/src/arch/riscv/common_riscv.lds +++ b/src/arch/riscv/common_riscv.lds @@ -87,11 +87,6 @@ SECTIONS *(.bss) *(COMMON) /* fallback in case '-fno-common' is not used */ - /* 4k breakpoint stack */ - _breakpoint_stack_bottom = .; - . = . + 4K; - _breakpoint_stack_top = .; - /* large data such as the globals frame and global PD */ *(.bss.aligned) #if defined(CONFIG_PLAT_ROCKETCHIP_ZCU102)