mirror of https://github.com/wolfSSL/wolfBoot.git
56 lines
948 B
Plaintext
56 lines
948 B
Plaintext
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = @WOLFBOOT_TEST_APP_ADDRESS@, LENGTH = 256K
|
|
DRAM (rwx) : ORIGIN = 0x80001000 , LENGTH = 0xBFFFFFFF
|
|
OCRAM (rwx) : ORIGIN = 0x18020100, LENGTH = 128K
|
|
}
|
|
|
|
ENTRY(main);
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
_start_text = .;
|
|
KEEP(*(.boot*))
|
|
*(.text*)
|
|
*(.rodata*)
|
|
*(.note.*)
|
|
. = ALIGN(4);
|
|
_end_text = .;
|
|
} > OCRAM
|
|
|
|
.edidx :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.ARM.exidx*)
|
|
} > OCRAM
|
|
|
|
PROVIDE(_stored_data = .);
|
|
|
|
.data :
|
|
{
|
|
_start_data = .;
|
|
KEEP(*(.data*))
|
|
. = ALIGN(4);
|
|
KEEP(*(.ramcode))
|
|
. = ALIGN(4);
|
|
_end_data = .;
|
|
} > OCRAM
|
|
|
|
.bss (NOLOAD) :
|
|
{
|
|
_start_bss = .;
|
|
__bss_start__ = .;
|
|
*(.bss*)
|
|
*(COMMON)
|
|
. = ALIGN(4);
|
|
_end_bss = .;
|
|
__bss_end__ = .;
|
|
_end = .;
|
|
} > OCRAM
|
|
. = ALIGN(4);
|
|
}
|
|
|
|
END_STACK = _start_text;
|