diff options
Diffstat (limited to 'roms/u-boot/tools/binman/test/bss_data.lds')
-rw-r--r-- | roms/u-boot/tools/binman/test/bss_data.lds | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roms/u-boot/tools/binman/test/bss_data.lds b/roms/u-boot/tools/binman/test/bss_data.lds new file mode 100644 index 000000000..306dab504 --- /dev/null +++ b/roms/u-boot/tools/binman/test/bss_data.lds @@ -0,0 +1,15 @@ +/* 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 +{ + . = 0xfffffdf0; + _start = .; + __bss_size = 10; +} |