vmlinux.lds.in 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * linux/arch/arm/boot/compressed/vmlinux.lds.in
  3. *
  4. * Copyright (C) 2000 Russell King
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. OUTPUT_ARCH(arm)
  11. ENTRY(_start)
  12. SECTIONS
  13. {
  14. . = TEXT_START;
  15. _text = .;
  16. .text : {
  17. _start = .;
  18. *(.start)
  19. *(.text)
  20. *(.fixup)
  21. *(.gnu.warning)
  22. *(.rodata)
  23. *(.rodata.*)
  24. *(.glue_7)
  25. *(.glue_7t)
  26. *(.piggydata)
  27. . = ALIGN(4);
  28. }
  29. _etext = .;
  30. _got_start = .;
  31. .got : { *(.got) }
  32. _got_end = .;
  33. .got.plt : { *(.got.plt) }
  34. .data : { *(.data) }
  35. _edata = .;
  36. . = BSS_START;
  37. __bss_start = .;
  38. .bss : { *(.bss) }
  39. _end = .;
  40. .stack (NOLOAD) : { *(.stack) }
  41. .stab 0 : { *(.stab) }
  42. .stabstr 0 : { *(.stabstr) }
  43. .stab.excl 0 : { *(.stab.excl) }
  44. .stab.exclstr 0 : { *(.stab.exclstr) }
  45. .stab.index 0 : { *(.stab.index) }
  46. .stab.indexstr 0 : { *(.stab.indexstr) }
  47. .comment 0 : { *(.comment) }
  48. }