Changeset 874e312a in mainline
- Timestamp:
- 2005-10-12T21:28:28Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b07a838
- Parents:
- 26f9943
- Location:
- arch
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/boot/boot.S
r26f9943 r874e312a 49 49 #define START_STACK (BOOTSTRAP_OFFSET-0x400) 50 50 51 .section K_TEXT_START 51 .section K_TEXT_START, "ax" 52 52 .code16 53 53 .global kernel_image_start … … 138 138 jmp 1b 139 139 140 .section K_DATA_START 140 .section K_DATA_START, "aw", @progbits 141 141 .align 4096 142 142 -
arch/amd64/src/pm.c
r26f9943 r874e312a 117 117 struct tss *tss_p = NULL; 118 118 119 /* TODO: Does not compile correctly if it does not exist ???? */120 int __attribute__ ((section ("K_DATA_START"))) __fake;121 122 119 void gdt_tss_setbase(struct descriptor *d, __address base) 123 120 { -
arch/amd64/src/smp/ap.S
r26f9943 r874e312a 38 38 #include <arch/mm/page.h> 39 39 40 .section K_TEXT_START_2 40 .section K_TEXT_START_2, "ax" 41 41 42 42 #ifdef __SMP__ -
arch/ia32/_link.ld.in
r26f9943 r874e312a 26 26 *(K_DATA_START); 27 27 unmapped_kdata_end = .; 28 29 LONG(0xdeadbeaf); /* TODO: remove 0xdeadbeaf */30 28 } 31 29 -
arch/ia32/src/boot/boot.S
r26f9943 r874e312a 34 34 #include <arch/pm.h> 35 35 36 .section K_TEXT_START 36 .section K_TEXT_START, "ax" 37 37 .global kernel_image_start 38 38 … … 244 244 245 245 246 .section K_DATA_START 246 .section K_DATA_START, "aw", @progbits 247 247 248 248 .align 4096 -
arch/ia32/src/boot/memmap.S
r26f9943 r874e312a 36 36 37 37 .code16 38 .section K_TEXT_START_2 38 .section K_TEXT_START_2, "ax" 39 39 40 40 memmap_arch_init: … … 109 109 110 110 111 .section K_DATA_START 111 .section K_DATA_START, "aw", @progbits 112 112 113 113 #memory size in 1 kb chunks -
arch/ia32/src/smp/ap.S
r26f9943 r874e312a 31 31 # 32 32 33 .section K_TEXT_START_2 33 .section K_TEXT_START_2, "ax" 34 34 35 35 #ifdef __SMP__
Note:
See TracChangeset
for help on using the changeset viewer.