7762c07c88
This drops support for all the !emmc EVB and adds banannaPi-R2 Also drop mtkhnat until the nftables offoad driver is ready Signed-off-by: John Crispin <john@phrozen.org>
41 lines
840 B
Bash
Executable file
41 lines
840 B
Bash
Executable file
#
|
|
# Copyright (C) 2016 OpenWrt.org
|
|
#
|
|
|
|
platform_do_upgrade() {
|
|
local tar_file="$1"
|
|
local board="$(board_name)"
|
|
|
|
echo "flashing kernel"
|
|
tar xf $tar_file sysupgrade-$board/kernel -O | mtd write - kernel
|
|
|
|
echo "flashing rootfs"
|
|
tar xf $tar_file sysupgrade-$board/root -O | mtd write - rootfs
|
|
|
|
return 0
|
|
}
|
|
|
|
platform_check_image() {
|
|
local tar_file="$1"
|
|
local board=$(board_name)
|
|
|
|
case "$board" in
|
|
bananapi,bpi-r2 |\
|
|
mediatek,mt7623a-rfb-emmc)
|
|
local kernel_length=`(tar xf $tar_file sysupgrade-$board/kernel -O | wc -c) 2> /dev/null`
|
|
local rootfs_length=`(tar xf $tar_file sysupgrade-$board/root -O | wc -c) 2> /dev/null`
|
|
;;
|
|
|
|
*)
|
|
echo "Sysupgrade is not supported on your board yet."
|
|
return 1
|
|
;;
|
|
esac
|
|
|
|
[ "$kernel_length" = 0 -o "$rootfs_length" = 0 ] && {
|
|
echo "The upgarde image is corrupt."
|
|
return 1
|
|
}
|
|
|
|
return 0
|
|
}
|