mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-11 05:11:27 +00:00
6e2a842d62
The WG302 v1 have a separate rootfs partition that we simply just upgrade with a new rootfs image. The kernel need to be updated on the TFTP server. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
28 lines
393 B
Bash
28 lines
393 B
Bash
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
platform_check_image() {
|
|
local board=$(board_name)
|
|
|
|
case "$board" in
|
|
netgear,wg302v1)
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
echo "Sysupgrade is not yet supported on $board."
|
|
return 1
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
local board=$(board_name)
|
|
|
|
case "$board" in
|
|
netgear,wg302v1)
|
|
PART_NAME=rootfs
|
|
default_do_upgrade "$1"
|
|
;;
|
|
esac
|
|
}
|