mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
5ae87c76b7
stage2 passes image path to platform_do_upgrade() as an argument so it can be simply accessed using $1 Signed-off-by: Rafał Miłecki <rafal@milecki.pl> (cherry picked from commit8b4bc7abe0
) [rmilecki: dropping ARGV without this change broke sysupgrade] Fixes:6ac62c4b6c
("base-files: don't set ARGV and ARGC")
23 lines
356 B
Bash
23 lines
356 B
Bash
RAMFS_COPY_BIN='fw_printenv fw_setenv'
|
|
RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
|
|
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
platform_check_image() {
|
|
return 0
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
local board="$(board_name)"
|
|
|
|
case "$board" in
|
|
"linksys,audi"|\
|
|
"linksys,viper")
|
|
platform_do_upgrade_linksys "$1"
|
|
;;
|
|
*)
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
esac
|
|
}
|