1/*
2 * Copyright (c) 2016 Google, Inc
3 *
4 * SPDX-License-Identifier:      GPL-2.0+
5 */
6
7OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
8OUTPUT_ARCH(i386)
9ENTRY(_start)
10
11SECTIONS
12{
13	. = 0x00000000;
14	_start = .;
15
16	. = ALIGN(4);
17	.text :
18	{
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}
30