bbec614b78
The generated scripts don't include a definition for any symbol indicating the end of statically allocated memory (such as "_end"). Add a shared cmake fragment, ram-end.cmake, which contains the necessary instructions to define _end and z_mapped_end consistently to align with the other sample linker scripts. Signed-off-by: Keith Packard <keithp@keithp.com>
8 lines
189 B
CMake
8 lines
189 B
CMake
zephyr_linker_section(NAME .last_ram_section VMA RAM LMA RAM_REGION TYPE BSS)
|
|
zephyr_linker_section_configure(
|
|
SECTION .last_ram_section
|
|
INPUT ""
|
|
SYMBOLS _end z_mapped_end
|
|
KEEP
|
|
)
|