http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / kernel / linux / arch / alpha / boot / bootloader.lds
1 OUTPUT_FORMAT("elf64-alpha")
2 ENTRY(__start)
3 SECTIONS
4 {
5   . = 0x20000000;
6   .text : { *(.text) }
7   _etext = .;
8   PROVIDE (etext = .);
9   .rodata : { *(.rodata) *(.rodata.*) }
10   .data : { *(.data) CONSTRUCTORS }
11   .got : { *(.got) }
12   .sdata : { *(.sdata) }
13   _edata = .;
14   PROVIDE (edata = .);
15   .sbss : { *(.sbss) *(.scommon) }
16   .bss : { *(.bss) *(COMMON) }
17   _end = . ;
18   PROVIDE (end = .);
19
20   .mdebug 0 : { *(.mdebug) }
21   .note 0 : { *(.note) }
22   .comment 0 : { *(.comment) }
23 }