Skip to content

Commit 7d193e4

Browse files
committed
picolibc: Set default section size to 128K as in Newlib
Signed-off-by: Yuriy Kolerov <[email protected]>
1 parent e8c1650 commit 7d193e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/generate_picolibc_cross_file

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import sys
66
DEFAULT_TRIPLET = "riscv64-unknown-elf"
77
DEFAULT_CFLAGS = "-O2"
88
DEFAULT_FLASH_ADDR = "0x80000000"
9-
DEFAULT_FLASH_SIZE = "0x00200000"
10-
DEFAULT_RAM_ADDR = "0x80200000"
11-
DEFAULT_RAM_SIZE = "0x00200000"
9+
DEFAULT_FLASH_SIZE = "128K"
10+
DEFAULT_RAM_ADDR = "0x80020000"
11+
DEFAULT_RAM_SIZE = "128K"
1212

1313

1414
def parse_options(argv):

0 commit comments

Comments
 (0)