Skip to content

Commit 14f1c56

Browse files
thughesdanieldegrasse
authored andcommitted
arch: riscv: Increase IDT_LIST size
Some boards fail to build arch.interrupt.gen_isr_table_local.riscv test since this region is too small: riscv64-zephyr-elf/bin/ld.bfd: zephyr/zephyr_pre0.elf section `.intList' will not fit in region `IDT_LIST' riscv64-zephyr-elf/bin/ld.bfd: region `IDT_LIST' overflowed by 239 bytes This is a bogus memory region, so increasing it has no effect on the final binary size. Issue #92194 Signed-off-by: Tom Hughes <[email protected]>
1 parent d9c5545 commit 14f1c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/zephyr/arch/riscv/common/linker.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ MEMORY
117117
LINKER_DT_REGIONS()
118118

119119
/* Used by and documented in include/linker/intlist.ld */
120-
IDT_LIST (wx) : ORIGIN = 0xFFFFF7FF, LENGTH = 2K
120+
IDT_LIST (wx) : ORIGIN = 0xFFFFF000, LENGTH = 4K
121121
}
122122

123123
ENTRY(CONFIG_KERNEL_ENTRY)

0 commit comments

Comments
 (0)