rust based raspberry pi os
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

44 lignes
738 B

  1. ENTRY(_start)
  2. SECTIONS
  3. {
  4. /* Starts at LOADER_ADDR. */
  5. . = 0x8000;
  6. /* For AArch64, use . = 0x80000; */
  7. __start = .;
  8. __text_start = .;
  9. .text :
  10. {
  11. KEEP(*(.text.boot))
  12. *(.text)
  13. }
  14. . = ALIGN(4096);
  15. __text_end = .;
  16. __rodata_start = .;
  17. .rodata :
  18. {
  19. *(.rodata)
  20. }
  21. . = ALIGN(4096); /* align to page size */
  22. __rodata_end = .;
  23. __data_start = .;
  24. .data :
  25. {
  26. *(.data)
  27. }
  28. . = ALIGN(4096); /* align to page size */
  29. __data_end = .;
  30. __bss_start = .;
  31. .bss :
  32. {
  33. bss = .;
  34. *(.bss)
  35. }
  36. . = ALIGN(4096); /* align to page size */
  37. __bss_end = .;
  38. __bss_size = __bss_end - __bss_start;
  39. __end = .;
  40. }