What happens during the boot process after the Raspberry PI is turned on? I know that it differs from the standard Linux boot process ( no complex boot manager like Lilo/Grub ), I also know that the boot process has several steps, the device loads files like loader.bin, bootcode.bin, start.elf, kernel.img... But what is the exact order of these steps?
Asked
Active
Viewed 7,812 times
1 Answers
18
As said here the boot process:
- GPU Core
- first stage bootloader, which is stored in ROM on the SoC
- bootcode.bin (loader.bin merged)
- start.elf
- config.txt
- cmdline.txt
- kernel.img
After this boot scripts will be called by the kernel: systemd or init
ArchHaskeller
- 1,435
- 12
- 35