* 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
15 lines
306 B
Plaintext
15 lines
306 B
Plaintext
INCLUDE "memory.x"
|
|
|
|
REGION_ALIAS("ROTEXT", IROM);
|
|
REGION_ALIAS("RODATA", DROM);
|
|
|
|
REGION_ALIAS("RWDATA", DRAM);
|
|
REGION_ALIAS("RWTEXT", IRAM);
|
|
|
|
REGION_ALIAS("RTC_FAST_RWTEXT", RTC_FAST);
|
|
REGION_ALIAS("RTC_FAST_RWDATA", RTC_FAST);
|
|
|
|
INCLUDE "bl-riscv-link.x"
|
|
INCLUDE "hal-defaults.x"
|
|
INCLUDE "rom-functions.x"
|