This is an automated email from the ASF dual-hosted git repository. jiuzhudong pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit b777b0acbe6f6113d7a0e3eb1e0576405ab9783f Author: yinshengkai <[email protected]> AuthorDate: Mon Jan 26 14:04:27 2026 +0800 boards/sam3u-ek: Increase kflash size from 65K to 80K. Adjusted memory layout to allocate more space for kernel flash: Signed-off-by: yinshengkai <[email protected]> --- boards/arm/sam34/sam3u-ek/scripts/memory.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/arm/sam34/sam3u-ek/scripts/memory.ld b/boards/arm/sam34/sam3u-ek/scripts/memory.ld index 6b59fcde567..c3334dad1bc 100644 --- a/boards/arm/sam34/sam3u-ek/scripts/memory.ld +++ b/boards/arm/sam34/sam3u-ek/scripts/memory.ld @@ -68,8 +68,8 @@ MEMORY { /* 256Kb FLASH */ - kflash (rx) : ORIGIN = 0x00080000, LENGTH = 65K - uflash (rx) : ORIGIN = 0x00090400, LENGTH = 63K + kflash (rx) : ORIGIN = 0x00080000, LENGTH = 80K + uflash (rx) : ORIGIN = 0x00094000, LENGTH = 48K xflash (rx) : ORIGIN = 0x000a0000, LENGTH = 128K /* 32Kb SRAM */
