summaryrefslogtreecommitdiffstats
path: root/target/linux/image/generic/lzma-loader/src/lzma.lds.in
blob: 5ac555bf7db4264bf5fa455bd4a8dc1c94acd32c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)
  }
}