ea3131/pgnsh: Fix the follow linker error

ld: /github/workspace/sources/nuttx/nuttx section `.data' will not fit in region `locked'
ld: section .paged LMA [0000000011034000,0000000011040fa3] overlaps section .data LMA [0000000011033ff4,00000000110340e3]
ld: region `locked' overflowed by 228 bytes

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2021-07-11 14:35:16 +08:00 committed by Xiang Xiao
parent 9b1f554429
commit 2e43815c92

View File

@ -53,8 +53,8 @@
MEMORY
{
locked (rx) : ORIGIN = 0x11029080, LENGTH = 48K - 4224
paged (rx) : ORIGIN = 0x11034000, LENGTH = 384K
locked (rx) : ORIGIN = 0x11029080, LENGTH = 52K - 4224
paged (rx) : ORIGIN = 0x11035000, LENGTH = 380K
data (rw) : ORIGIN = 0x11094000, LENGTH = 44K
}