Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / u_boot_binman_syms_bad.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                 *(.text*)
19         }
20
21         . = ALIGN(4);
22         .binman_sym_table : {
23                 __binman_sym_start = .;
24                 KEEP(*(SORT(.binman_sym*)));
25                 __binman_sym_end = .;
26         }
27
28 }