c92bfe0728
Why I did it add celestica belgite platform How I did it add belgite platform in celestica Co-authored-by: nicwu-cel <nicwu@celestica.com> Co-authored-by: anjian <anjian@celestica.com> Co-authored-by: sandycelestica <sandyli@celestica.com>
22 lines
395 B
Plaintext
Executable File
22 lines
395 B
Plaintext
Executable File
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(custom_led_handler)
|
|
SECTIONS
|
|
{
|
|
. = 0x3800;
|
|
|
|
. = ALIGN(4);
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.data)
|
|
*(.bss)
|
|
}
|
|
|
|
/DISCARD/ : { *(.dynstr*) }
|
|
/DISCARD/ : { *(.dynamic*) }
|
|
/DISCARD/ : { *(.plt*) }
|
|
/DISCARD/ : { *(.interp*) }
|
|
/DISCARD/ : { *(.gnu*) }
|
|
}
|