Changeset a948e85d in rtems
- Timestamp:
- 09/22/08 11:30:51 (15 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 88aad06
- Parents:
- 5aeed17
- Location:
- c/src/lib/libbsp/powerpc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/gen5200/ChangeLog
r5aeed17 ra948e85d 1 2008-09-22 Sebastian Huber <sebastian.huber@embedded-brains.de> 2 3 * startup/linkcmds.base: Fixed wrong section size symbols. 4 1 5 2008-09-20 Joel Sherrill <joel.sherrill@oarcorp.com> 2 6 -
c/src/lib/libbsp/powerpc/gen5200/startup/linkcmds.base
r5aeed17 ra948e85d 132 132 133 133 /* 134 * BSP: End and sizeof text section134 * BSP: End of text section 135 135 */ 136 136 bsp_section_text_end = .; 137 bsp_section_text_size = bsp_section_text_end - bsp_section_text_start;138 137 } > RAM 139 138 … … 220 219 221 220 /* 222 * BSP: End and sizeof data section221 * BSP: End of data section 223 222 */ 224 223 bsp_section_data_end = .; 225 bsp_section_data_size = bsp_section_data_end - bsp_section_data_start;226 224 } > RAM 227 225 … … 255 253 256 254 /* 257 * BSP: End and sizeof bss section255 * BSP: End of bss section 258 256 */ 259 257 bsp_section_bss_end = .; 260 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start; 261 } > RAM 258 } > RAM 259 260 /* 261 * BSP: Section sizes 262 */ 263 bsp_section_text_size = bsp_section_text_end - bsp_section_text_start; 264 bsp_section_data_size = bsp_section_data_end - bsp_section_data_start; 265 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start; 262 266 263 267 /* 264 268 * BSP: Interrupt stack 265 269 */ 266 bsp_interrupt_stack_start = .;270 bsp_interrupt_stack_start = bsp_section_bss_end; 267 271 bsp_interrupt_stack_end = bsp_interrupt_stack_start + 32k; 268 272 bsp_interrupt_stack_size = bsp_interrupt_stack_end - bsp_interrupt_stack_start; 269 . = bsp_interrupt_stack_end;270 273 271 274 /* 272 275 * BSP: Work area start 273 276 */ 274 bsp_work_area_start = .;275 WorkAreaBase = .;277 bsp_work_area_start = bsp_interrupt_stack_end; 278 WorkAreaBase = bsp_work_area_start; 276 279 277 280 /* Stabs debugging sections. */ -
c/src/lib/libbsp/powerpc/gen83xx/ChangeLog
r5aeed17 ra948e85d 1 2008-09-22 Sebastian Huber <sebastian.huber@embedded-brains.de> 2 3 * startup/linkcmds.base: Fixed wrong section size symbols. 4 1 5 2008-09-20 Joel Sherrill <joel.sherrill@oarcorp.com> 2 6 -
c/src/lib/libbsp/powerpc/gen83xx/startup/linkcmds.base
r5aeed17 ra948e85d 138 138 139 139 /* 140 * BSP: End and sizeof text section140 * BSP: End of text section 141 141 */ 142 142 bsp_section_text_end = .; 143 bsp_section_text_size = bsp_section_text_end - bsp_section_text_start;144 143 } > RAM 145 144 … … 226 225 227 226 /* 228 * BSP: End and sizeof data section227 * BSP: End of data section 229 228 */ 230 229 bsp_section_data_end = .; 231 bsp_section_data_size = bsp_section_data_end - bsp_section_data_start;232 230 } > RAM 233 231 … … 261 259 262 260 /* 263 * BSP: End and sizeof bss section261 * BSP: End of bss section 264 262 */ 265 263 bsp_section_bss_end = .; 266 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start; 267 } > RAM 264 } > RAM 265 266 /* 267 * BSP: Section sizes 268 */ 269 bsp_section_text_size = bsp_section_text_end - bsp_section_text_start; 270 bsp_section_data_size = bsp_section_data_end - bsp_section_data_start; 271 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start; 268 272 269 273 /* 270 274 * BSP: Interrupt stack 271 275 */ 272 bsp_interrupt_stack_start = .;276 bsp_interrupt_stack_start = bsp_section_bss_end; 273 277 bsp_interrupt_stack_end = bsp_interrupt_stack_start + 32k; 274 278 bsp_interrupt_stack_size = bsp_interrupt_stack_end - bsp_interrupt_stack_start; 275 . = bsp_interrupt_stack_end;276 279 277 280 /* 278 281 * BSP: Work area start 279 282 */ 280 bsp_work_area_start = .;281 WorkAreaBase = .;283 bsp_work_area_start = bsp_interrupt_stack_end; 284 WorkAreaBase = bsp_work_area_start; 282 285 283 286 /* Stabs debugging sections. */
Note: See TracChangeset
for help on using the changeset viewer.