blob: 825fc3f649f78f35c8dfb5530621f128e02a717a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassff339252017-11-13 18:54:58 -07002/*
3 * Copyright (c) 2016 Google, Inc
Simon Glassff339252017-11-13 18:54:58 -07004 */
5
6OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
7OUTPUT_ARCH(i386)
8ENTRY(_start)
9
10SECTIONS
11{
Simon Glass33778202019-10-20 21:31:34 -060012 . = 0x00000010;
Simon Glassff339252017-11-13 18:54:58 -070013 _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 }
Simon Glass5d0c0262019-08-24 07:22:56 -060028 .interp : { *(.interp*) }
Simon Glassff339252017-11-13 18:54:58 -070029
30}