aboutsummaryrefslogtreecommitdiff
path: root/uboot.txt
blob: 370ae50aacb714952ad9de018d69761f9bd43fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# do not wait for three seconds
bootdelay=0

# kernel arguments
bootargs=console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext4 init=/sbin/init rootwait

# boot command (three commands separated by semicolons):
# 1. load zImage format kernel at address 0x80008000
# 2. load device tree at address 0x82000000
# 3. start the kernel (kernel is in zImage format, so bootz is used here)
bootcmd=fatload mmc 0:1 0x80008000 zImage ; fatload mmc 0:1 0x82000000 am335x-boneblack.dtb ; bootz 0x80008000 - 0x82000000

# happy editor
# vim:ft=sh