imx6: extend cubox support to hummingboard, add support for building full images
[openwrt/openwrt.git] / target / linux / imx6 / image / bootscript-cubox
index b6395907205658d0d0552ef54b6e469db39c225a..2ed48ab9415f5d95b6ee327615fdf7e79c1a56be 100644 (file)
@@ -4,10 +4,15 @@ echo "CuBox OpenWrt Boot script"
 setenv console console=ttymxc0,115200 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24,bpp=32
 
 # Find correct dtb
-if test ${board_name} = CUBOXI && test ${board_rev} = MX6DL; then
-       setenv fdt_name imx6dl.dtb;
-elif test ${board_name} = CUBOXI && test ${board_rev} = MX6Q; then
-       setenv fdt_name imx6q-cubox-i.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
@@ -19,8 +24,8 @@ elif mmc dev 1; then
 fi
 
 # Boot from the SD card is supported at the moment
-setenv bootargs "${console} root=/dev/mmcblk1p1 rw rootwait"
+setenv bootargs "${console} root=/dev/mmcblk1p2 rw rootwait"
 mmc dev ${mmcdev}
-load ${devtype} ${mmcdev}:${devplist} ${kernel_addr_r} /boot/openwrt-imx6-cubox-i-uImage
-load ${devtype} ${mmcdev}:${devplist} ${fdt_addr_r} /boot/openwrt-imx6-${fdt_name}
+load ${devtype} ${mmcdev}:${devplist} ${kernel_addr_r} /uImage
+load ${devtype} ${mmcdev}:${devplist} ${fdt_addr_r} /${fdt_name}
 bootz ${kernel_addr_r} - ${fdt_addr_r}