mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 10:30:32 +00:00
32 lines
346 B
Text
32 lines
346 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
|
||
|
{
|
||
|
. = 0x00000010;
|
||
|
_start = .;
|
||
|
|
||
|
. = ALIGN(4);
|
||
|
.text :
|
||
|
{
|
||
|
*(.text*)
|
||
|
}
|
||
|
|
||
|
. = 0x00001000;
|
||
|
.sram :
|
||
|
{
|
||
|
*(.sram*)
|
||
|
}
|
||
|
|
||
|
/DISCARD/ : {
|
||
|
*(.comment)
|
||
|
*(.dyn*)
|
||
|
}
|
||
|
}
|