mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-11 16:01:56 +02:00
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3076 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
304 B
Plaintext
24 lines
304 B
Plaintext
OUTPUT_ARCH(mips)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
. = @LOADADDR@;
|
|
.text :
|
|
{
|
|
_ftext = . ;
|
|
*(.text)
|
|
*(.rodata)
|
|
lzma_start = .;
|
|
kernel.o
|
|
lzma_end = .;
|
|
} =0
|
|
|
|
.reginfo : { *(.reginfo) }
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
}
|