Changeset 874e312a in mainline for arch/amd64
- Timestamp:
- 2005-10-12T21:28:28Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b07a838
- Parents:
- 26f9943
- Location:
- arch/amd64/src
- Files:
-
- 3 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__
Note:
See TracChangeset
for help on using the changeset viewer.