diff options
Diffstat (limited to 'rpi/u-boot.config')
-rw-r--r-- | rpi/u-boot.config | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rpi/u-boot.config b/rpi/u-boot.config new file mode 100644 index 0000000..b8ca6e7 --- /dev/null +++ b/rpi/u-boot.config @@ -0,0 +1,11 @@ +# swarren's branch already sets this automatically, so you can skip this +# Mainline U-Boot will set the following automatically soon +setenv fdtfile bcm2835-rpi-b.dtb + +mmc dev 0 +fatload mmc 0:1 ${kernel_addr_r} zImage +# IMPORTANT NOTE: On mainline u-boot, the correct variable to use here is ${fdt_addr} and NOT ${fdt_addr_r} +fatload mmc 0:1 ${fdt_addr_r} ${fdtfile} +setenv bootargs earlyprintk console=tty0 console=ttyAMA0 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait noinitrd +# IMPORTANT NOTE: On mainline u-boot, the correct variable to use here is ${fdt_addr} and NOT ${fdt_addr_r} +bootz ${kernel_addr_r} - ${fdt_addr_r} |