mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 13:56:30 +00:00
19 lines
246 B
Text
19 lines
246 B
Text
|
/*
|
||
|
* Copyright (c) 2016 Google, Inc
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
|
||
|
OUTPUT_ARCH(i386)
|
||
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0xfffffdf0;
|
||
|
_start = .;
|
||
|
.ucode : {
|
||
|
*(.ucode)
|
||
|
}
|
||
|
}
|