Changeset e12ccc5 in mainline for kernel/arch/xen32/src/boot/boot.S
- Timestamp:
- 2006-08-01T17:27:11Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0fbfa0d
- Parents:
- e386cbf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/xen32/src/boot/boot.S
re386cbf re12ccc5 33 33 34 34 .section __xen_guest 35 .ascii "GUEST_OS=HelenOS," 36 .ascii "XEN_VER=xen-3.0," 37 .ascii "HYPERCALL_PAGE=0x0000," 38 .ascii "LOADER=generic" 35 .ascii "GUEST_OS=HelenOS," 36 .ascii "XEN_VER=xen-3.0," 37 .ascii "HYPERCALL_PAGE=0x0000," 38 .ascii "LOADER=generic," 39 .ascii "FEATURES=writable_page_tables" 39 40 .byte 0 40 41 … … 52 53 cld 53 54 rep movsb 54 55 56 # switch to temporal kernel stack 57 58 movl $kernel_stack, %esp 59 60 call arch_pre_main 55 61 call main_bsp # never returns 56 62 57 63 cli 58 64 hlt 65 66 kernel_stack_bottom: 67 .space TEMP_STACK_SIZE 68 kernel_stack: 59 69 60 70 .section K_TEXT_START, "aw", @progbits … … 63 73 hypercall_page: 64 74 .space PAGE_SIZE 75 76 .global shared_info 77 .org 0x1000 78 shared_info: 79 .space PAGE_SIZE
Note:
See TracChangeset
for help on using the changeset viewer.