lzma loader patch from oleg, great thanks good work, saves another 300 kb flashmemory
[oweals/openwrt.git] / openwrt / package / linux / kernel-source / arch / mips / brcm-boards / bcm947xx / compressed / vmlinux.lds
1 OUTPUT_ARCH(mips)
2 ENTRY(startup)
3 SECTIONS {
4         . = 0x80001000;
5         .text : {
6                 *(.text)
7                 *(.rodata)
8         }
9
10         .data : {
11                 *(.data)
12         }
13
14         .bss : {
15                 *(.bss)
16         }
17 }