GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)

This commit is contained in:
lai
2026-09-06 03:52:57 +08:00
commit b1928b41c0
21813 changed files with 4413081 additions and 0 deletions
@@ -0,0 +1,47 @@
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
__image_copy_start =.;
. = ALIGN(4);
.text :
{
__text_start = .;
start.o (.text*)
uart.o (.text*)
image_data.o (.text*)
startup.o(.text*)
reset.o(.text*)
*(.text*)
}
__text_end = .;
. = ALIGN(4);
.image : { *(.image) }
. = ALIGN(4);
.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
. = ALIGN(4);
.data : { *(.data) }
. = ALIGN(4);
.got : { *(.got) }
. = ALIGN(4);
.tail :
{
tail.o (.tail)
}
. = ALIGN(4);
__image_copy_end =.;
__bss_start = .;
.bss : { *(.bss) }
__bss_end = .;
_end = .;
}