mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
31 lines
434 B
Text
31 lines
434 B
Text
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (c) 2016 Google, Inc
|
||
|
*/
|
||
|
|
||
|
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
||
|
OUTPUT_ARCH(i386)
|
||
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0xffffff00;
|
||
|
_start = .;
|
||
|
|
||
|
. = ALIGN(4);
|
||
|
.text :
|
||
|
{
|
||
|
__image_copy_start = .;
|
||
|
*(.text*)
|
||
|
}
|
||
|
|
||
|
. = ALIGN(4);
|
||
|
.binman_sym_table : {
|
||
|
__binman_sym_start = .;
|
||
|
KEEP(*(SORT(.binman_sym*)));
|
||
|
__binman_sym_end = .;
|
||
|
}
|
||
|
.interp : { *(.interp*) }
|
||
|
|
||
|
}
|