Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
#include "config.h" #include "cpu.h" /* These output formats should be in the config-files */ #ifdef CPU_COLDFIRE OUTPUT_FORMAT(elf32-m68k) #elif defined(CPU_ARM) OUTPUT_FORMAT(elf32-littlearm) #elif defined(CPU_SH) OUTPUT_FORMAT(elf32-sh) #elif defined(CPU_MIPS) OUTPUT_FORMAT(elf32-littlemips) #else /* We can have an #error here we don't use this file when build sims! */ #error Unknown CPU architecture #endif ENTRY (__header) MEMORY { flatmem : ORIGIN = 0x0, LENGTH = 0xffffffff } PHDRS { text PT_LOAD ; data PT_LOAD ; } SECTIONS { .text 0x0 : { /* . = . + 4; this was for pic libs */ . = ALIGN(0x4) ; _stext = . ; /* rockbox specific plugin header section */ *(.header) *(.text) *(.text.*) #if (PLUGIN_IRAMSIZE == 0) *(.icode) #endif *(.glue_7t) *(.glue_7) *(.gnu.warning) *(.stub) *(.gnu.linkonce.t*) *(.jcr) KEEP (*(.init)) KEEP (*(.fini)) W_RODAT *(.rodata) W_RODAT *(.rodata1) W_RODAT *(.rodata.*) #if (PLUGIN_IRAMSIZE == 0) W_RODAT *(.irodata) #endif W_RODAT *(.gnu.linkonce.r*) /* This is special code area at the end of the normal text section. It contains a small lookup table at the start followed by the code pointed to by entries in the lookup table. */ . = ALIGN (4) ; PROVIDE(__ctbp = .); *(.call_table_data) *(.call_table_text) . = ALIGN(0x20) ; _etext = . ; } > flatmem :text .icode : { *(.icode*) } > flatmem :text .data : { . = ALIGN(0x4) ; _sdata = . ; __data_start = . ; data_start = . ; /* *(.got.plt) */ /* *(.got) */ /* FILL(0) ; */ /* . = ALIGN(0x20) ; */ /* LONG(-1) */ /* . = ALIGN(0x20) ; */ R_RODAT *(.rodata) R_RODAT *(.rodata1) R_RODAT *(.rodata.*) #if (PLUGIN_IRAMSIZE == 0) R_RODAT *(.irodata) #endif R_RODAT *(.gnu.linkonce.r*) *(.data) *(.data1) *(.data.*) #if (PLUGIN_IRAMSIZE == 0) *(.idata) #endif *(.gnu.linkonce.d*) /* Microblaze has .sdata and .sbss (small bss). They must be contiguous, so please don't move any of this. JW */ _ssrw = . ; *(.sdata) *(.sdata.*) *(.sbss) /* Don't move this! */ *(.gnu.linkonce.sb*) _essrw = . ; _ssrw_size = _essrw - _ssrw; PROVIDE(_SDA_BASE_ = _ssrw + (_ssrw_size / 2)); *(.gnu.linkonce.s.*) *(__libc_atexit) *(__libc_subinit) *(__libc_subfreeres) /* microblaze-specific read-only small data area and associated locating symbols */ _ssro = . ; *(.sdata2) _essro = . ; _ssro_size = _essro - _ssro; PROVIDE(_SDA2_BASE_ = _ssro + (_ssro_size / 2)); . = ALIGN(4) ; TOR: __CTOR_LIST__ = .; TOR: LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) SINGLE_LINK: /* gcc uses crtbegin.o to find the start of SINGLE_LINK: the constructors, so we make sure it is SINGLE_LINK: first. Because this is a wildcard, it SINGLE_LINK: doesn't matter if the user does not SINGLE_LINK: actually link against crtbegin.o; the SINGLE_LINK: linker won't look for a file to match a SINGLE_LINK: wildcard. The wildcard also means that it SINGLE_LINK: doesn't matter which directory crtbegin.o SINGLE_LINK: is in. */ SINGLE_LINK: KEEP (*crtbegin*.o(.ctors)) SINGLE_LINK: /* We don't want to include the .ctor section from SINGLE_LINK: from the crtend.o file until after the sorted ctors. SINGLE_LINK: The .ctor section from the crtend file contains the SINGLE_LINK: end of ctors marker and it must be last */ SINGLE_LINK: KEEP (*(EXCLUDE_FILE (*crtend*.o ) .ctors)) SINGLE_LINK: KEEP (*(SORT(.ctors.*))) KEEP (*(.ctors)) TOR: LONG(0) TOR: __CTOR_END__ = .; TOR: __DTOR_LIST__ = .; TOR: LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) SINGLE_LINK: KEEP (*crtbegin*.o(.dtors)) SINGLE_LINK: KEEP (*(EXCLUDE_FILE (*crtend*.o ) .dtors)) SINGLE_LINK: KEEP (*(SORT(.dtors.*))) KEEP (*(.dtors)) TOR: LONG(0) TOR: __DTOR_END__ = .; PROVIDE (__preinit_array_start = .); KEEP (*(.preinit_array)) PROVIDE (__preinit_array_end = .); PROVIDE (__init_array_start = .); KEEP (*(SORT(.init_array.*))) KEEP (*(.init_array)) PROVIDE (__init_array_end = .); PROVIDE (__fini_array_start = .); KEEP (*(.fini_array)) KEEP (*(SORT(.fini_array.*))) PROVIDE (__fini_array_end = .); } > flatmem :data #ifdef NOCACHE_BASE .ncdata (. + NOCACHE_BASE) : { . = ALIGN(CACHEALIGN_SIZE); *(.ncdata*) . = ALIGN(CACHEALIGN_SIZE); } AT > flatmem :data #endif #if (PLUGIN_IRAMSIZE != 0) .idata : { *(.irodata*) *(.idata*) } > flatmem :data #endif .note.ABI-tag : {*(.note.ABI-tag) } > flatmem .eh_frame_hdr : {*(.eh_frame_hdr) } > flatmem .eh_frame : {KEEP(*(.eh_frame)) } > flatmem .gcc_except_table : { KEEP(*(.gcc_except_table)) KEEP(*(.gcc_except_table.*)) } >flatmem . = ALIGN(0x10) ; _edata = . ; .bss (NOLOAD) : { . = ALIGN(0x4) ; _sbss = ALIGN(0x4) ; __bss_start = . ; *(.dynsbss) *(.sbss) *(.sbss.*) *(.scommon) *(.dynbss) *(.bss) *(.bss.*) *(.bss*) *(.gnu.linkonce.b*) #if (PLUGIN_IRAMSIZE == 0) *(.ibss) #endif *(COMMON) . = ALIGN(0x10) ; _ebss = . ; _end = . ; end = . ; } > flatmem #ifdef NOCACHE_BASE .ncbss . + NOCACHE_BASE (NOLOAD) : { . = ALIGN(CACHEALIGN_SIZE); *(.ncbss*) . = ALIGN(CACHEALIGN_SIZE); } AT> flatmem #endif #if (PLUGIN_IRAMSIZE != 0) .ibss (NOLOAD) : { *(.ibss) } > flatmem #endif .stack : { . = ALIGN(0x4); _stack_start = .; } .junk 0 : {*(.rel*) *(.rela*) } /DISCARD/ : {*(.note.GNU-stack) } /* Stabs debugging sections. */ .stab 0 : {*(.stab) } .stabstr 0 : {*(.stabstr) } .stab.excl 0 : {*(.stab.excl) } .stab.exclstr 0 : {*(.stab.exclstr) } .stab.index 0 : {*(.stab.index) } .stab.indexstr 0 : {*(.stab.indexstr) } .comment 0 : {*(.comment) } /* DWARF debug sections. Symbols in the DWARF debugging sections are relative to the beginning of the section so we begin them at 0. */ /* DWARF 1 */ .debug 0 : {*(.debug) } .line 0 : {*(.line) } /* GNU DWARF 1 extensions */ .debug_srcinfo 0 : {*(.debug_srcinfo) } .debug_sfnames 0 : {*(.debug_sfnames) } /* DWARF 1.1 and DWARF 2 */ .debug_aranges 0 : {*(.debug_aranges) } .debug_pubnames 0 : {*(.debug_pubnames) } /* DWARF 2 */ .debug_info 0 : {*(.debug_info .gnu.linkonce.wi.*) } .debug_abbrev 0 : {*(.debug_abbrev) } .debug_line 0 : {*(.debug_line) } .debug_frame 0 : {*(.debug_frame) } .debug_str 0 : {*(.debug_str) } .debug_loc 0 : {*(.debug_loc) } .debug_macinfo 0 : {*(.debug_macinfo) } /* SGI/MIPS DWARF 2 extensions */ .debug_weaknames 0 : {*(.debug_weaknames) } .debug_funcnames 0 : {*(.debug_funcnames) } .debug_typenames 0 : {*(.debug_typenames) } .debug_varnames 0 : {*(.debug_varnames) } } wodz@t510i:~/rockbox/build$ arm-elf-eabi-objdump -h -w /home/wodz/rockbox/build/apps/plugins/mp3_encoder.rock.gdb /home/wodz/rockbox/build/apps/plugins/mp3_encoder.rock.gdb: file format elf32-littlearm Sections: Idx Name Size VMA LMA File off Algn Flags 0 .text 00003060 00000000 00000000 00008000 2**2 CONTENTS, ALLOC, LOAD, RELOC, READONLY, CODE 1 .icode 00001774 00003060 00003060 0000b060 2**2 CONTENTS, ALLOC, LOAD, RELOC, READONLY, CODE 2 .data 00000320 000047d4 000047d4 0000c7d4 2**2 CONTENTS, ALLOC, LOAD, RELOC, DATA 3 .ncdata 0000000c 10004af4 10004af4 0000caf4 2**0 ALLOC 4 .idata 00003d28 10004b00 00004af4 0000caf4 2**2 CONTENTS, ALLOC, LOAD, RELOC, DATA 5 .bss 00000218 10008828 10008828 00000000 2**2 ALLOC 6 .ibss 000051e4 10008a40 10008a40 00000000 2**2 ALLOC 7 .ARM.attributes 0000002e 00000000 00000000 0001081c 2**0 CONTENTS, READONLY 8 .comment 00000011 00000000 00000000 0001084a 2**0 CONTENTS, READONLY 9 .debug_aranges 00000040 00000000 00000000 00010860 2**3 CONTENTS, RELOC, READONLY, DEBUGGING 10 .debug_info 0000013a 00000000 00000000 000108a0 2**0 CONTENTS, RELOC, READONLY, DEBUGGING 11 .debug_abbrev 00000028 00000000 00000000 000109da 2**0 CONTENTS, READONLY, DEBUGGING 12 .debug_line 00000134 00000000 00000000 00010a02 2**0 CONTENTS, RELOC, READONLY, DEBUGGING 13 .debug_frame 00000058 00000000 00000000 00010b38 2**2 CONTENTS, RELOC, READONLY, DEBUGGING |