mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-18 16:40:29 +00:00
bcm53xx: fix handling absolute paths in sysupgrade (for vendor formats)
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 45473
This commit is contained in:
parent
b12e85a451
commit
9e03c36259
@ -133,8 +133,8 @@ platform_pre_upgrade() {
|
||||
|
||||
# Extract trx
|
||||
case "$file_type" in
|
||||
"chk") trx="/tmp/$1.trx"; platform_extract_trx_from_chk "$1" "$trx";;
|
||||
"cybertan") trx="/tmp/$1.trx"; platform_extract_trx_from_cybertan "$1" "$trx";;
|
||||
"chk") trx="/tmp/$(basename $1).trx"; platform_extract_trx_from_chk "$1" "$trx";;
|
||||
"cybertan") trx="/tmp/$(basename $1).trx"; platform_extract_trx_from_cybertan "$1" "$trx";;
|
||||
esac
|
||||
|
||||
# Extract partitions from trx
|
||||
@ -178,8 +178,8 @@ platform_do_upgrade() {
|
||||
}
|
||||
|
||||
case "$file_type" in
|
||||
"chk") trx="/tmp/$1.trx"; platform_extract_trx_from_chk "$1" "$trx";;
|
||||
"cybertan") trx="/tmp/$1.trx"; platform_extract_trx_from_cybertan "$1" "$trx";;
|
||||
"chk") trx="/tmp/$(basename $1).trx"; platform_extract_trx_from_chk "$1" "$trx";;
|
||||
"cybertan") trx="/tmp/$(basename $1).trx"; platform_extract_trx_from_cybertan "$1" "$trx";;
|
||||
esac
|
||||
|
||||
shift
|
||||
|
Loading…
x
Reference in New Issue
Block a user