aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/adm8668/image/lzma-loader/src/lzma.lds.in
blob: d6c60ca0d0ad7bad62ec48b7cd44af5ec87e7859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
OUTPUT_ARCH(mips)
ENTRY(entry)
SECTIONS
{
  /* Read-only sections, merged into text segment: */
  . = @LOADADDR@;
  .text      :
  {
    _ftext = . ;
    *(.text.entry)
    *(.text)
    lzma_start = .;
    kernel.o
    lzma_end = .;
    *(.rodata)
  } =0

  .reginfo : { *(.reginfo) }

  .bss       :
  {
   *(.bss)
  }
}