boards/arm64: Add an impls section to the link script

Signed-off-by: wangming9 <wangming9@xiaomi.com>
Signed-off-by: lipengfei28 <lipengfei28@xiaomi.com>
This commit is contained in:
wangming9 2024-03-14 16:32:54 +08:00 committed by Xiang Xiao
parent c18f722185
commit 5ff147e07c
2 changed files with 10 additions and 0 deletions

View File

@ -82,6 +82,11 @@ SECTIONS
*(.data.page_aligned)
*(.data)
. = ALIGN(8);
__start_impls = .;
*(.impls)
KEEP(*(.impls))
. = ALIGN(4);
__stop_impls = .;
*(.data.rel)
*(.data.rel.*)
CONSTRUCTORS

View File

@ -105,6 +105,11 @@ SECTIONS
*(.data.page_aligned)
*(.data)
. = ALIGN(8);
__start_impls = .;
*(.impls)
KEEP(*(.impls))
. = ALIGN(4);
__stop_impls = .;
*(.data.rel)
*(.data.rel.*)
CONSTRUCTORS