SPDX: Convert all of our single license tags to Linux Kernel style
[oweals/u-boot.git] / tools / binman / test / u_boot_binman_syms.lds
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2016 Google, Inc
4  */
5
6 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
7 OUTPUT_ARCH(i386)
8 ENTRY(_start)
9
10 SECTIONS
11 {
12         . = 0x00000000;
13         _start = .;
14
15         . = ALIGN(4);
16         .text :
17         {
18                 __image_copy_start = .;
19                 *(.text*)
20         }
21
22         . = ALIGN(4);
23         .binman_sym_table : {
24                 __binman_sym_start = .;
25                 KEEP(*(SORT(.binman_sym*)));
26                 __binman_sym_end = .;
27         }
28
29 }