diff options
Diffstat (limited to 'target/linux/imx6/image')
-rw-r--r-- | target/linux/imx6/image/Makefile | 16 | ||||
-rw-r--r-- | target/linux/imx6/image/bootscript-cubox | 26 |
2 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/imx6/image/Makefile b/target/linux/imx6/image/Makefile index cef08f227e..540692d817 100644 --- a/target/linux/imx6/image/Makefile +++ b/target/linux/imx6/image/Makefile @@ -51,6 +51,13 @@ define Build/bootfs.tar.gz -czvf $@ . endef +define Build/boot-scr + mkimage -A arm -O linux -T script -C none -a 0 -e 0 \ + -n '$(DEVICE_ID) OpenWrt bootscript' \ + -d ./bootscript-$(DEVICE_NAME) \ + $(BIN_DIR)/boot.scr +endef + ################################################# # Devices ################################################# @@ -123,4 +130,13 @@ define Device/wandboard endef TARGET_DEVICES += wandboard +define Device/cubox-i + KERNEL := kernel-bin | install-dtb | boot-scr + DEVICE_NAME := cubox + DEVICE_TITLE := SolidRun CuBox-i + DEVICE_PACKAGES := u-boot-mx6cuboxi kmod-drm-imx kmod-drm-imx-hdmi kmod-usb-hid + DEVICE_DTS := imx6q-cubox-i imx6dl-cubox-i +endef +TARGET_DEVICES += cubox-i + $(eval $(call BuildImage)) diff --git a/target/linux/imx6/image/bootscript-cubox b/target/linux/imx6/image/bootscript-cubox new file mode 100644 index 0000000000..b639590720 --- /dev/null +++ b/target/linux/imx6/image/bootscript-cubox @@ -0,0 +1,26 @@ +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_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; +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/mmcblk1p1 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} +bootz ${kernel_addr_r} - ${fdt_addr_r} |