12 lines
624 B
Plaintext
12 lines
624 B
Plaintext
# 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}
|