mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-13 00:19:21 +02:00
9e0a57b449
platform directories are now self contained git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5669 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
324 B
Plaintext
25 lines
324 B
Plaintext
OUTPUT_ARCH(mips)
|
|
ENTRY(@ENTRY@)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
. = @LOADADDR@;
|
|
.text :
|
|
{
|
|
_ftext = . ;
|
|
*(.text.entry)
|
|
*(.text)
|
|
*(.rodata)
|
|
lzma_start = .;
|
|
kernel.o
|
|
lzma_end = .;
|
|
} =0
|
|
|
|
.reginfo : { *(.reginfo) }
|
|
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
}
|
|
}
|