Changeset ddd9486 in mainline
- Timestamp:
- 2005-09-11T13:29:25Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 788ccb04
- Parents:
- 8e3fb24c
- Location:
- arch
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/_link.ld.in
r8e3fb24c rddd9486 49 49 *(COMMON); /* global variables */ 50 50 51 52 53 51 *(.eh_frame); 54 52 *(.bss); /* uninitialized static variables */ 55 *(K_DATA_END);56 53 57 54 symbol_table = .; -
arch/ia32/_link.ld.in
r8e3fb24c rddd9486 25 25 unmapped_kdata_start = .; 26 26 *(K_DATA_START); 27 // LONG(0xdeadbeaf); /* TODO: remove 0xdeadbeaf */ 27 28 unmapped_kdata_end = .; 28 29 } … … 35 36 36 37 kdata_start = .; 37 *(.data); /* initialized data */38 *(.rodata*); /* string literals */39 *(COMMON); /* global variables */38 *(.data); /* initialized data */ 39 *(.rodata*); /* string literals */ 40 *(COMMON); /* global variables */ 40 41 hardcoded_load_address = .; 41 42 LONG(PA2KA(BOOT_OFFSET+BOOTSTRAP_OFFSET)); … … 48 49 hardcoded_unmapped_kdata_size = .; 49 50 LONG(unmapped_kdata_end - unmapped_kdata_start); 50 *(.bss); /* uninitialized static variables */ 51 *(K_DATA_END); 51 *(.bss); /* uninitialized static variables */ 52 *(.note.GNU-stack); 53 *(.comment); 52 54 53 55 symbol_table = .; 54 *(symtab.*); /* Symbol table, must be LAST symbol!*/56 *(symtab.*); /* Symbol table, must be LAST symbol! */ 55 57 56 58 kdata_end = .; -
arch/ia32/src/acpi/madt.c
r8e3fb24c rddd9486 132 132 madt_entries_index_cnt++; 133 133 } 134 printf("MADT: Found %d entries\n", madt_entries_index_cnt);135 134 136 135 /* create madt apic entries index array */ … … 142 141 madt_entries_index[index++] = h; 143 142 } 144 145 143 146 144 /* Quicksort MADT index structure */ -
arch/ia32/src/pm.c
r8e3fb24c rddd9486 70 70 struct tss *tss_p = NULL; 71 71 72 /* TODO: Does not compile correctly if it does not exist ???? */73 int __attribute__ ((section ("K_DATA_START"))) __fake;74 75 72 /* gdtr is changed by kmp before next CPU is initialized */ 76 73 struct ptr_16_32 protected_bootstrap_gdtr = { .limit = sizeof(gdt), .base = KA2PA((__address) gdt) }; -
arch/mips/include/byteorder.h
r8e3fb24c rddd9486 30 30 #define __mips_BYTEORDER_H__ 31 31 32 /* MIPS is little-endian */33 32 #ifdef BIG_ENDIAN 34 33 static inline __u64 u64_le2host(__u64 n)
Note:
See TracChangeset
for help on using the changeset viewer.