mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-14 02:10:53 +02:00
17c7b6c3fd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8653 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
. = 0x00000000;
|
|
|
|
. = ALIGN(4);
|
|
.text : { *(.text) }
|
|
|
|
. = ALIGN(4);
|
|
.rodata : { *(.rodata) }
|
|
|
|
. = ALIGN(4);
|
|
.data : { *(.data) }
|
|
|
|
. = ALIGN(4);
|
|
.bss : { *(.bss) }
|
|
} |