188328111b
Calling nand_do_upgrade() from platform_pre_upgrade() was deprecated
with 30f61a34b4
("base-files: always use staged sysupgrade").
Update the platform upgrade code to use platform_do_upgrade() for NAND
images as well.
Signed-off-by: Mathias Kresin <dev@kresin.me>
52 lines
650 B
Bash
Executable file
52 lines
650 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PART_NAME=firmware
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
platform_check_image() {
|
|
local board=$(board_name)
|
|
|
|
case "$board" in
|
|
wd,mybooklive|\
|
|
wd,mybooklive-duo)
|
|
mbl_do_platform_check "$1"
|
|
return $?;
|
|
;;
|
|
*)
|
|
return 0
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
local board=$(board_name)
|
|
|
|
case "$board" in
|
|
wd,mybooklive|\
|
|
wd,mybooklive-duo)
|
|
mbl_do_upgrade "$ARGV"
|
|
;;
|
|
meraki,mr24|\
|
|
meraki,mx60|\
|
|
netgear,wndr4700)
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
*)
|
|
default_do_upgrade "$ARGV"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_copy_config() {
|
|
local board=$(board_name)
|
|
|
|
case "$board" in
|
|
wd,mybooklive|\
|
|
wd,mybooklive-duo)
|
|
mbl_copy_config
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|
|
}
|