Changeset ef9a2a8 in mainline for boot/arch/sparc32
- Timestamp:
- 2013-09-15T19:23:19Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3efc35a
- Parents:
- b6b02c0
- Location:
- boot/arch/sparc32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc32/include/asm.h
rb6b02c0 ref9a2a8 57 57 } 58 58 59 extern void jump_to_kernel(void *entry );59 extern void jump_to_kernel(void *entry, bootinfo_t *bootinfo); 60 60 61 61 #endif -
boot/arch/sparc32/src/asm.S
rb6b02c0 ref9a2a8 53 53 jump_to_kernel: 54 54 set 0x80a00000, %l0 55 55 56 jmp %l0 56 57 nop -
boot/arch/sparc32/src/main.c
rb6b02c0 ref9a2a8 120 120 121 121 printf("Booting the kernel ... \n"); 122 jump_to_kernel((void *) PA2KA(BOOT_OFFSET) );122 jump_to_kernel((void *) PA2KA(BOOT_OFFSET), &bootinfo); 123 123 } 124 124
Note:
See TracChangeset
for help on using the changeset viewer.