zImage.lds 578 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. OUTPUT_ARCH(powerpc:common)
  2. SECTIONS
  3. {
  4. .text :
  5. {
  6. *(.text)
  7. *(.fixup)
  8. }
  9. _etext = .;
  10. . = ALIGN(4096);
  11. .data :
  12. {
  13. *(.rodata*)
  14. *(.data*)
  15. *(.sdata*)
  16. *(.got*)
  17. }
  18. . = ALIGN(4096);
  19. _vmlinux_start = .;
  20. .kernel:vmlinux.strip : { *(.kernel:vmlinux.strip) }
  21. _vmlinux_end = .;
  22. . = ALIGN(4096);
  23. _initrd_start = .;
  24. .kernel:initrd : { *(.kernel:initrd) }
  25. _initrd_end = .;
  26. . = ALIGN(4096);
  27. _edata = .;
  28. . = ALIGN(4096);
  29. __bss_start = .;
  30. .bss :
  31. {
  32. *(.sbss)
  33. *(.bss)
  34. }
  35. . = ALIGN(4096);
  36. _end = . ;
  37. }