u_boot_binman_syms_bad.lds 381 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2016 Google, Inc
  4. */
  5. OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
  6. OUTPUT_ARCH(i386)
  7. ENTRY(_start)
  8. SECTIONS
  9. {
  10. . = 0x00000000;
  11. _start = .;
  12. . = ALIGN(4);
  13. .text :
  14. {
  15. *(.text*)
  16. }
  17. . = ALIGN(4);
  18. .binman_sym_table : {
  19. __binman_sym_start = .;
  20. KEEP(*(SORT(.binman_sym*)));
  21. __binman_sym_end = .;
  22. }
  23. }