diff options
author | John Crispin <blogic@openwrt.org> | 2014-06-19 14:13:38 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-06-19 14:13:38 +0000 |
commit | 0f6578ce01ba5a99cc193f84c5d69811077fd78e (patch) | |
tree | 60358c1b72b2efb75ff76626ab796582389a43e1 /target | |
parent | de86057bfc78f7c71f25fdfa6dc481070b286003 (diff) | |
download | upstream-0f6578ce01ba5a99cc193f84c5d69811077fd78e.tar.gz upstream-0f6578ce01ba5a99cc193f84c5d69811077fd78e.tar.bz2 upstream-0f6578ce01ba5a99cc193f84c5d69811077fd78e.zip |
imx6: add sysupgrade support
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41277 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/imx6/base-files/lib/upgrade/platform.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/imx6/base-files/lib/upgrade/platform.sh b/target/linux/imx6/base-files/lib/upgrade/platform.sh new file mode 100755 index 0000000000..7f8733a673 --- /dev/null +++ b/target/linux/imx6/base-files/lib/upgrade/platform.sh @@ -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 +} |