Changeset 5eb84ab in mainline for arch/ppc32/loader/main.c


Ignore:
Timestamp:
2006-03-07T08:32:51Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bcc223b2
Parents:
1b08233
Message:

ppc bootstrap almost working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/loader/main.c

    r1b08233 r5eb84ab  
    3030#include "printf.h"
    3131#include "ofw.h"
     32#include "asm.h"
    3233
    3334#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)
    4038
    4139void bootstrap(void)
     
    4846                halt();
    4947        }
     48        memcpy(addr, KERNEL_START, KERNEL_SIZE);
    5049       
    51         halt();
     50        printf("Booting the kernel...\n");
     51        jump_to_kernel(addr);
    5252}
Note: See TracChangeset for help on using the changeset viewer.