mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-07-19 14:44:52 +02:00
19 lines
268 B
Plaintext
19 lines
268 B
Plaintext
/* 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
|
|
{
|
|
. = 0xfffffe14;
|
|
_start = .;
|
|
.ucode : {
|
|
*(.ucode)
|
|
}
|
|
.interp : { *(.interp*) }
|
|
}
|