summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-05-02 19:30:59 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-05-02 19:30:59 +0000
commit5dc1ce4ccbb5874e971ede60eb38a8c51fd6720b (patch)
treed20c407d8597ca79acb97811de032f7c21d303be /target
parent5423050c984a62c5491d6a667dd5fb4a16ecaba5 (diff)
downloadmaster-31e0f0ae-5dc1ce4ccbb5874e971ede60eb38a8c51fd6720b.tar.gz
master-31e0f0ae-5dc1ce4ccbb5874e971ede60eb38a8c51fd6720b.tar.bz2
master-31e0f0ae-5dc1ce4ccbb5874e971ede60eb38a8c51fd6720b.zip
fix upgrade detection logic, patch from Bernhard Loos
SVN-Revision: 21310
Diffstat (limited to 'target')
-rw-r--r--target/linux/rdc/base-files/lib/upgrade/platform.sh14
1 files changed, 4 insertions, 10 deletions
diff --git a/target/linux/rdc/base-files/lib/upgrade/platform.sh b/target/linux/rdc/base-files/lib/upgrade/platform.sh
index 6e4a7df80f..6348a6990b 100644
--- a/target/linux/rdc/base-files/lib/upgrade/platform.sh
+++ b/target/linux/rdc/base-files/lib/upgrade/platform.sh
@@ -1,16 +1,10 @@
-PART_NAME=linux
+PART_NAME=firmware
platform_check_image() {
- [ "$ARGC" -gt 1 ] && return 1
+ [ "$(get_magic_word $(find_mtd_part firmware))" -eq "$(get_magic_word "$1")" ] && return 0
- case "$(get_magic_word "$1")" in
- # rdc .bin files for ar360w3g
- 474d) return 0;;
- *)
- echo "Invalid image type. Please use an appropriate .bin file"
- return 1
- ;;
- esac
+ echo "Invalid image type. Please use an appropriate .bin file"
+ return 1
}
# use default for platform_do_upgrade()