Changeset eb522e8 in mainline for kernel/arch/ia64/_link.ld.in
- Timestamp:
- 2011-06-01T08:43:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6c1f1
- Parents:
- 9e2e715 (diff), e51a514 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/_link.ld.in
r9e2e715 reb522e8 16 16 ktext_start = .; 17 17 *(K_TEXT_START); 18 *(.text )18 *(.text .text.*) 19 19 ktext_end = .; 20 20 … … 30 30 hardcoded_kdata_size = .; 31 31 QUAD(kdata_end - kdata_start); 32 __gp = .; 32 33 *(.got .got.*) 33 34 *(.sdata) … … 36 37 *(.bss) 37 38 *(COMMON); 38 39 39 40 . = ALIGN(8); 40 41 42 41 symbol_table = .; 42 *(symtab.*); /* Symbol table, must be LAST symbol!*/ 43 43 44 kdata_end = .; 44 45 } 45 46 46 47 /DISCARD/ : { 47 48 *(*); 48 49 } 49 50 50 }
Note:
See TracChangeset
for help on using the changeset viewer.