vmlinux.lds.in 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. *(.text.*)
  21. *(.fixup)
  22. *(.gnu.warning)
  23. *(.rodata)
  24. *(.rodata.*)
  25. *(.glue_7)
  26. *(.glue_7t)
  27. *(.piggydata)
  28. . = ALIGN(4);
  29. }
  30. _etext = .;
  31. _got_start = .;
  32. .got : { *(.got) }
  33. _got_end = .;
  34. .got.plt : { *(.got.plt) }
  35. .data : { *(.data) }
  36. _edata = .;
  37. . = BSS_START;
  38. __bss_start = .;
  39. .bss : { *(.bss) }
  40. _end = .;
  41. .stack (NOLOAD) : { *(.stack) }
  42. .stab 0 : { *(.stab) }
  43. .stabstr 0 : { *(.stabstr) }
  44. .stab.excl 0 : { *(.stab.excl) }
  45. .stab.exclstr 0 : { *(.stab.exclstr) }
  46. .stab.index 0 : { *(.stab.index) }
  47. .stab.indexstr 0 : { *(.stab.indexstr) }
  48. .comment 0 : { *(.comment) }
  49. }