Changeset 04d4512 in mainline
- Timestamp:
- 2007-04-09T06:03:19Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 261595b
- Parents:
- 72bcb25
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/_link.ld.in
r72bcb25 r04d4512 11 11 OUTPUT_ARCH(mips) 12 12 13 ENTRY(kernel_image_start) 13 ENTRY(kernel_image_start) 14 14 15 15 SECTIONS { … … 32 32 *(.sdata); 33 33 *(.reginfo); 34 /* Unfortunately IRIX does not allow us 35 * to include this as a last section :-( 36 * BSS/SBSS addresses will be wrong */ 34 *(.sbss); 35 *(.scommon); 36 *(.bss); /* uninitialized static variables */ 37 *(COMMON); /* global variables */ 37 38 symbol_table = .; 38 39 *(symtab.*); … … 41 42 .lit8 : { *(.lit8) } 42 43 .lit4 : { *(.lit4) } 43 .sbss : {44 *(.sbss);45 *(.scommon);46 }47 .bss : {48 *(.bss); /* uninitialized static variables */49 *(COMMON); /* global variables */50 }51 44 52 45 kdata_end = .;
Note:
See TracChangeset
for help on using the changeset viewer.