mirror of https://github.com/wolfSSL/wolfBoot.git
Updated x86 linker scripts with missing variable
parent
79fd23950c
commit
27ab92ec21
|
|
@ -25,6 +25,8 @@ SECTIONS
|
|||
_end_wolfboot = .;
|
||||
} > RAM
|
||||
|
||||
_stored_data = _end_text;
|
||||
|
||||
_fsp_size = _end_fsp_s - _start_fsp_s;
|
||||
.bss WOLFBOOT_LOAD_BASE + SIZEOF(.text) (NOLOAD):
|
||||
{
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ SECTIONS
|
|||
|
||||
.bootloader WOLFBOOT_ORIGIN :
|
||||
{
|
||||
_start_text = .;
|
||||
KEEP(*(.boot*))
|
||||
*(.text*)
|
||||
*(.rodata*)
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ SECTIONS
|
|||
_end_wolfboot = .;
|
||||
}
|
||||
|
||||
_stored_data = _end_text;
|
||||
_fsp_size = _end_fsp_s - _start_fsp_s;
|
||||
.bss WOLFBOOT_LOAD_BASE + SIZEOF(.text) (NOLOAD):
|
||||
{
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ SECTIONS
|
|||
|
||||
.bootloader WOLFBOOT_ORIGIN :
|
||||
{
|
||||
_start_text = .;
|
||||
KEEP(./tgl_fsp.o(.boot))
|
||||
KEEP(*(.boot*))
|
||||
KEYSTORE_START = .;
|
||||
|
|
|
|||
Loading…
Reference in New Issue