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

  .reginfo : { *(.reginfo) }

  .bss       :
  {
   *(.bss)
  }
}