blob: 2ed48ab9415f5d95b6ee327615fdf7e79c1a56be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
echo "CuBox OpenWrt Boot script"
# Set console variable for both UART and HDMI
setenv console console=ttymxc0,115200 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24,bpp=32
# Find correct dtb
if test ${board_rev} = MX6DL; then
setenv fdt_soc_type imx6dl;
elif test ${board_rev} = MX6Q; then
setenv fdt_soc_type imx6q;
fi
if test ${board_name} = CUBOXI; then
setenv fdt_name ${fdt_soc_type}-cubox-i.dtb;
elif test ${board_name} = HUMMINGBOARD; then
setenv fdt_name ${fdt_soc_type}-hummingboard.dtb;
fi
# Set correct devtype and partition
if test ${devtype} != mmc; then setenv devtype mmc; fi
if mmc dev 0; then
setenv mmcdev 0
elif mmc dev 1; then
setenv mmcdev 1
fi
# Boot from the SD card is supported at the moment
setenv bootargs "${console} root=/dev/mmcblk1p2 rw rootwait"
mmc dev ${mmcdev}
load ${devtype} ${mmcdev}:${devplist} ${kernel_addr_r} /uImage
load ${devtype} ${mmcdev}:${devplist} ${fdt_addr_r} /${fdt_name}
bootz ${kernel_addr_r} - ${fdt_addr_r}
|