* Move segment aliasing to linkall.x, this allows other projects to define there own alias whilst still being able to use esp-hal linker scripts * Move rwtext in front of rwdata * Re-arrange include * Fix s3 direct boot script
12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
INCLUDE "memory.x"
|
|
|
|
REGION_ALIAS("ROTEXT", IROM);
|
|
REGION_ALIAS("RODATA", DROM);
|
|
|
|
REGION_ALIAS("RWDATA", DRAM);
|
|
REGION_ALIAS("RWTEXT", IRAM);
|
|
|
|
INCLUDE "bl-riscv-link.x"
|
|
INCLUDE "hal-defaults.x"
|
|
INCLUDE "rom-functions.x"
|