56b8ac1e86
Set the (sys)upgrade state when sourcing the stage2 script instead of setting the state for each target individual. This change fixes the, due to a missing state set, not working upgrade led on ath79 and apm821xx. Signed-off-by: Mathias Kresin <dev@kresin.me>
48 lines
852 B
Bash
48 lines
852 B
Bash
PART_NAME=firmware
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
RAMFS_COPY_BIN='fw_printenv fw_setenv'
|
|
RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
|
|
|
|
platform_check_image() {
|
|
return 0;
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
case "$(board_name)" in
|
|
compex,wpq864|\
|
|
netgear,d7800 |\
|
|
netgear,r7500 |\
|
|
netgear,r7500v2 |\
|
|
netgear,r7800 |\
|
|
qcom,ipq8064-ap148 |\
|
|
zyxel,nbg6817)
|
|
nand_do_upgrade "$ARGV"
|
|
;;
|
|
linksys,ea8500)
|
|
platform_do_upgrade_linksys "$ARGV"
|
|
;;
|
|
tplink,c2600)
|
|
PART_NAME="os-image:rootfs"
|
|
MTD_CONFIG_ARGS="-s 0x200000"
|
|
default_do_upgrade "$ARGV"
|
|
;;
|
|
tplink,vr2600v)
|
|
PART_NAME="kernel:rootfs"
|
|
MTD_CONFIG_ARGS="-s 0x200000"
|
|
default_do_upgrade "$ARGV"
|
|
;;
|
|
nec,wg2600hp |\
|
|
*)
|
|
default_do_upgrade "$ARGV"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_nand_pre_upgrade() {
|
|
case "$(board_name)" in
|
|
zyxel,nbg6817)
|
|
zyxel_do_upgrade "$1"
|
|
;;
|
|
esac
|
|
}
|