Revert "arm64: linker: define z_mapped_* symbols"

This reverts commit 9559223c7b.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2021-01-22 07:37:44 -05:00
commit 8e6add58b0

View file

@ -104,9 +104,7 @@ SECTIONS
SECTION_PROLOGUE(_TEXT_SECTION_NAME,,)
{
_image_text_start = .;
#ifndef CONFIG_XIP
z_mapped_start = .;
#endif
_vector_start = .;
KEEP(*(.exc_vector_table))
KEEP(*(".exc_vector_table.*"))
@ -212,9 +210,6 @@ SECTIONS
*/
. = ALIGN(_region_min_align);
_image_ram_start = .;
#ifdef CONFIG_XIP
z_mapped_start = .;
#endif
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -290,8 +285,6 @@ SECTIONS
_image_ram_end = .;
_end = .; /* end of image */
z_mapped_end = .;
z_mapped_size = z_mapped_end - z_mapped_start;
__kernel_ram_end = RAM_ADDR + RAM_SIZE;
__kernel_ram_size = __kernel_ram_end - __kernel_ram_start;