openwrtv3/target/linux/imx6/base-files/lib/upgrade/platform.sh
Luka Perkov fa0b9bccea imx6: move imx6.sh to /lib/ for consistency
Signed-off-by: Luka Perkov <luka@openwrt.org>

SVN-Revision: 41339
2014-06-26 10:14:13 +00:00

19 lines
262 B
Bash
Executable file

#
# Copyright (C) 2010 OpenWrt.org
#
. /lib/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
}