Author: blogic Date: 2014-06-19 16:13:38 +0200 (Thu, 19 Jun 2014) New Revision: 41277
Added: trunk/target/linux/imx6/base-files/lib/upgrade/ trunk/target/linux/imx6/base-files/lib/upgrade/platform.sh Log: imx6: add sysupgrade support Signed-off-by: John Crispin <[email protected]> Added: trunk/target/linux/imx6/base-files/lib/upgrade/platform.sh =================================================================== --- trunk/target/linux/imx6/base-files/lib/upgrade/platform.sh (rev 0) +++ trunk/target/linux/imx6/base-files/lib/upgrade/platform.sh 2014-06-19 14:13:38 UTC (rev 41277) @@ -0,0 +1,19 @@ +# +# Copyright (C) 2010 OpenWrt.org +# + +. /lib/functions/imx6.sh + +platform_check_image() { + local board=$(imx6_board_name) + + case "$board" in + gw54xx) + nand_do_platform_check $board $1 + return $?; + ;; + esac + + echo "Sysupgrade is not yet supported on $board." + return 1 +} Property changes on: trunk/target/linux/imx6/base-files/lib/upgrade/platform.sh ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
