bootp.lds 547 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/arch/arm/boot/bootp/bootp.lds
  4. *
  5. * Copyright (C) 2000-2002 Russell King
  6. */
  7. OUTPUT_ARCH(arm)
  8. ENTRY(_start)
  9. SECTIONS
  10. {
  11. . = 0;
  12. .text : {
  13. _stext = .;
  14. *(.start)
  15. *(.text)
  16. initrd_size = initrd_end - initrd_start;
  17. _etext = .;
  18. }
  19. .stab 0 : { *(.stab) }
  20. .stabstr 0 : { *(.stabstr) }
  21. .stab.excl 0 : { *(.stab.excl) }
  22. .stab.exclstr 0 : { *(.stab.exclstr) }
  23. .stab.index 0 : { *(.stab.index) }
  24. .stab.indexstr 0 : { *(.stab.indexstr) }
  25. .comment 0 : { *(.comment) }
  26. }