License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / arch / alpha / boot / bootloader.lds
blob8cdff54c6e41aa6aba125ed647c2a28e4ea7317c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 OUTPUT_FORMAT("elf64-alpha")
3 ENTRY(__start)
4 printk = srm_printk;
5 SECTIONS
7   . = 0x20000000;
8   .text : { *(.text) }
9   _etext = .;
10   PROVIDE (etext = .);
11   .rodata : { *(.rodata) *(.rodata.*) }
12   .data : { *(.data) CONSTRUCTORS }
13   .got : { *(.got) }
14   .sdata : { *(.sdata) }
15   _edata = .;
16   PROVIDE (edata = .);
17   .sbss : { *(.sbss) *(.scommon) }
18   .bss : { *(.bss) *(COMMON) }
19   _end = . ;
20   PROVIDE (end = .);
22   .mdebug 0 : { *(.mdebug) }
23   .note 0 : { *(.note) }
24   .comment 0 : { *(.comment) }