vmlinux.lds.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /DISCARD/ : {
  15. *(.ARM.exidx*)
  16. *(.ARM.extab*)
  17. }
  18. . = TEXT_START;
  19. _text = .;
  20. .text : {
  21. _start = .;
  22. *(.start)
  23. *(.text)
  24. *(.text.*)
  25. *(.fixup)
  26. *(.gnu.warning)
  27. *(.rodata)
  28. *(.rodata.*)
  29. *(.glue_7)
  30. *(.glue_7t)
  31. *(.piggydata)
  32. . = ALIGN(4);
  33. }
  34. _etext = .;
  35. _got_start = .;
  36. .got : { *(.got) }
  37. _got_end = .;
  38. .got.plt : { *(.got.plt) }
  39. .data : { *(.data) }
  40. _edata = .;
  41. . = BSS_START;
  42. __bss_start = .;
  43. .bss : { *(.bss) }
  44. _end = .;
  45. .stack (NOLOAD) : { *(.stack) }
  46. .stab 0 : { *(.stab) }
  47. .stabstr 0 : { *(.stabstr) }
  48. .stab.excl 0 : { *(.stab.excl) }
  49. .stab.exclstr 0 : { *(.stab.exclstr) }
  50. .stab.index 0 : { *(.stab.index) }
  51. .stab.indexstr 0 : { *(.stab.indexstr) }
  52. .comment 0 : { *(.comment) }
  53. }