Skip to content

Commit acbc86a

Browse files
mathieuchopstmkartben
authored andcommitted
llext: linker: use INFO type instead of COPY
COPY and INFO are different names for the same Output Section Type, but the latter is easier to understand in the context we are using it. Replace COPY with INFO in the LLEXT linker script snippet. Signed-off-by: Mathieu Choplain <mathieu.choplain-ext@st.com>
1 parent 2bfb7e4 commit acbc86a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/zephyr/linker/llext-sections.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* This section is used for mapping that symbol only and is not
1717
* to be included in the final binary.
1818
*/
19-
SECTION_PROLOGUE(llext_no_syscall_impl, 0 (COPY), )
19+
SECTION_PROLOGUE(llext_no_syscall_impl, 0 (INFO), )
2020
{
2121
*(llext_no_syscall_impl)
2222
}
@@ -33,7 +33,7 @@
3333
* strictly equivalent to the offset inside the section.
3434
*/
3535
#ifdef CONFIG_LLEXT_EXPORT_BUILTINS_BY_SLID
36-
SECTION_PROLOGUE(llext_exports_strtab, 0 (COPY), )
36+
SECTION_PROLOGUE(llext_exports_strtab, 0 (INFO), )
3737
{
3838
KEEP(*(llext_exports_strtab))
3939
}

0 commit comments

Comments
 (0)