You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233
  1. OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
  2. OUTPUT_ARCH(i386)
  3. SECTIONS
  4. {
  5. . = 0;
  6. .text : {
  7. _text = .;
  8. *(.head)
  9. *(.text)
  10. } = 0x9090
  11. .rodata : {
  12. *(.rodata)
  13. }
  14. _etext = . ;
  15. .data : {
  16. *(.data)
  17. /* Force 4 byte alignment */
  18. . = ALIGN(4);
  19. _payload = . ;
  20. *(.huf)
  21. _epayload = . ;
  22. }
  23. _edata = . ;
  24. _data_size = _edata - _start;
  25. /* Etherboot needs to be 16 byte aligned */
  26. . = ALIGN(16);
  27. .bss : {
  28. *(.bss)
  29. }
  30. _end = . ;
  31. _image_size = _end - _start;
  32. }