##Raspberry Pi的開始流程
1:Raspberry Pi 啟動時是靠著GPU上的啟動程式去讀SD卡的boot程式,這階段的程式是在rom裡的,不能更改,SD卡 須要format成FAT32格式。
2:Bootcode.bin -> loader.bin ->start.elf,loader.bin讓bootloader能讀elf檔案.
3:kernel.img,kernel的image。
The boot sequence of the Raspberry Pi is basically this:
figure source:http://raspberrypi.stackexchange.com/questions/10442/what-is-the-boot-sequence
看一下OSDev的範例:http://wiki.osdev.org/ARM_RaspberryPi_Tutorial_C
##Reference:
http://elinux.org/RPi_Software
http://kariddi.blogspot.tw/2012/08/raspberry-pi-bare-metal-part-1-boot.html