u-boot.lds.S 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * U-boot - u-boot.lds.S
  3. *
  4. * Copyright (c) 2005-2007 Analog Device Inc.
  5. *
  6. * (C) Copyright 2000-2004
  7. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <config.h>
  28. OUTPUT_ARCH(bfin)
  29. SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib);
  30. /* Do we need any of these for elf?
  31. __DYNAMIC = 0; */
  32. SECTIONS
  33. {
  34. /* Read-only sections, merged into text segment: */
  35. . = + SIZEOF_HEADERS;
  36. .interp : { *(.interp) }
  37. .hash : { *(.hash) }
  38. .dynsym : { *(.dynsym) }
  39. .dynstr : { *(.dynstr) }
  40. .rel.text : { *(.rel.text) }
  41. .rela.text : { *(.rela.text) }
  42. .rel.data : { *(.rel.data) }
  43. .rela.data : { *(.rela.data) }
  44. .rel.rodata : { *(.rel.rodata) }
  45. .rela.rodata : { *(.rela.rodata) }
  46. .rel.got : { *(.rel.got) }
  47. .rela.got : { *(.rela.got) }
  48. .rel.ctors : { *(.rel.ctors) }
  49. .rela.ctors : { *(.rela.ctors) }
  50. .rel.dtors : { *(.rel.dtors) }
  51. .rela.dtors : { *(.rela.dtors) }
  52. .rel.bss : { *(.rel.bss) }
  53. .rela.bss : { *(.rela.bss) }
  54. .rel.plt : { *(.rel.plt) }
  55. .rela.plt : { *(.rela.plt) }
  56. .init : { *(.init) }
  57. .plt : { *(.plt) }
  58. . = CFG_MONITOR_BASE;
  59. .text :
  60. {
  61. /* WARNING - the following is hand-optimized to fit within */
  62. /* the sector before the environment sector. If it throws */
  63. /* an error during compilation remove an object here to get */
  64. /* it linked after the configuration sector. */
  65. cpu/bf533/start.o (.text)
  66. cpu/bf533/start1.o (.text)
  67. cpu/bf533/traps.o (.text)
  68. cpu/bf533/interrupt.o (.text)
  69. cpu/bf533/serial.o (.text)
  70. common/dlmalloc.o (.text)
  71. /* lib_blackfin/bf533_string.o (.text) */
  72. /* lib_generic/vsprintf.o (.text) */
  73. lib_generic/crc32.o (.text)
  74. lib_generic/zlib.o (.text)
  75. board/bf533-ezkit/bf533-ezkit.o (.text)
  76. . = DEFINED(env_offset) ? env_offset : .;
  77. common/environment.o (.text)
  78. *(.text)
  79. *(.fixup)
  80. *(.got1)
  81. }
  82. _etext = .;
  83. PROVIDE (etext = .);
  84. .rodata :
  85. {
  86. *(.rodata)
  87. *(.rodata1)
  88. *(.rodata.str1.4)
  89. }
  90. .fini : { *(.fini) } =0
  91. .ctors : { *(.ctors) }
  92. .dtors : { *(.dtors) }
  93. /* Read-write section, merged into data segment: */
  94. . = (. + 0x00FF) & 0xFFFFFF00;
  95. _erotext = .;
  96. PROVIDE (erotext = .);
  97. .reloc :
  98. {
  99. *(.got)
  100. _GOT2_TABLE_ = .;
  101. *(.got2)
  102. _FIXUP_TABLE_ = .;
  103. *(.fixup)
  104. }
  105. __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
  106. __fixup_entries = (. - _FIXUP_TABLE_)>>2;
  107. .data :
  108. {
  109. *(.data)
  110. *(.data1)
  111. *(.sdata)
  112. *(.sdata2)
  113. *(.dynamic)
  114. CONSTRUCTORS
  115. }
  116. _edata = .;
  117. PROVIDE (edata = .);
  118. ___u_boot_cmd_start = .;
  119. .u_boot_cmd : { *(.u_boot_cmd) }
  120. ___u_boot_cmd_end = .;
  121. __start___ex_table = .;
  122. __ex_table : { *(__ex_table) }
  123. __stop___ex_table = .;
  124. . = ALIGN(256);
  125. __init_begin = .;
  126. .text.init : { *(.text.init) }
  127. .data.init : { *(.data.init) }
  128. . = ALIGN(256);
  129. __init_end = .;
  130. __bss_start = .;
  131. .bss :
  132. {
  133. *(.sbss) *(.scommon)
  134. *(.dynbss)
  135. *(.bss)
  136. *(COMMON)
  137. }
  138. _end = . ;
  139. PROVIDE (end = .);
  140. }