1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (c) 2016 Google, Inc
4 */
5
6OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
7OUTPUT_ARCH(i386)
8ENTRY(_start)
9
10SECTIONS
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}
29