diff options
Diffstat (limited to 'roms/u-boot/tools/binman/test/u_boot_ucode_ptr.lds')
-rw-r--r-- | roms/u-boot/tools/binman/test/u_boot_ucode_ptr.lds | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roms/u-boot/tools/binman/test/u_boot_ucode_ptr.lds b/roms/u-boot/tools/binman/test/u_boot_ucode_ptr.lds new file mode 100644 index 000000000..cf4d1b8bb --- /dev/null +++ b/roms/u-boot/tools/binman/test/u_boot_ucode_ptr.lds @@ -0,0 +1,18 @@ +/* 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*) } +} |