Changeset 5eb84ab in mainline for arch/ppc32/loader/main.c
- Timestamp:
- 2006-03-07T08:32:51Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bcc223b2
- Parents:
- 1b08233
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/main.c
r1b08233 r5eb84ab 30 30 #include "printf.h" 31 31 #include "ofw.h" 32 #include "asm.h" 32 33 33 34 #define KERNEL_LOAD_ADDRESS 0x800000 34 #define KERNEL_SIZE ((unsigned int) &_binary_____________kernel_kernel_bin_end - (unsigned int) &_binary_____________kernel_kernel_bin_start) 35 36 static void halt(void) 37 { 38 while (1); 39 } 35 #define KERNEL_START &_binary_____________kernel_kernel_bin_start 36 #define KERNEL_END &_binary_____________kernel_kernel_bin_end 37 #define KERNEL_SIZE ((unsigned int) KERNEL_END - (unsigned int) KERNEL_START) 40 38 41 39 void bootstrap(void) … … 48 46 halt(); 49 47 } 48 memcpy(addr, KERNEL_START, KERNEL_SIZE); 50 49 51 halt(); 50 printf("Booting the kernel...\n"); 51 jump_to_kernel(addr); 52 52 }
Note:
See TracChangeset
for help on using the changeset viewer.