1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-20 06:44:38 +02:00
openwrt-xburst/target/image/generic/lzma-loader/src/lzma.lds.in
nbd a8de4fb9f2 move target/linux/image to target/image
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4040 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-06-21 14:02:29 +00:00

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)
}
}