projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ar71xx: add support for the wzr-hp-g300nh2
[openwrt.git]
/
target
/
linux
/
ar71xx
/
base-files
/
lib
/
upgrade
/
platform.sh
diff --git
a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
index
fd11366
..
324edfb
100755
(executable)
--- a/
target/linux/ar71xx/base-files/lib/upgrade/platform.sh
+++ b/
target/linux/ar71xx/base-files/lib/upgrade/platform.sh
@@
-61,6
+61,10
@@
platform_do_upgrade_combined() {
fi
}
fi
}
+tplink_get_image_hwid() {
+ get_image "$@" | dd bs=4 count=1 skip=16 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
+}
+
platform_check_image() {
local board=$(ar71xx_board_name)
local magic="$(get_magic_word "$1")"
platform_check_image() {
local board=$(ar71xx_board_name)
local magic="$(get_magic_word "$1")"
@@
-77,6
+81,7
@@
platform_check_image() {
ap121-mini | \
ap96 | \
db120 | \
ap121-mini | \
ap96 | \
db120 | \
+ hornet-ub | \
zcn-1523h-2 | \
zcn-1523h-5)
[ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
zcn-1523h-2 | \
zcn-1523h-5)
[ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
@@
-97,7
+102,9
@@
platform_check_image() {
bullet-m | \
nanostation-m | \
rocket-m | \
bullet-m | \
nanostation-m | \
rocket-m | \
+ wzr-hp-g300nh2 | \
wzr-hp-g300nh | \
wzr-hp-g300nh | \
+ wzr-hp-g450h | \
wzr-hp-ag300h | \
whr-g301n | \
whr-hp-g300n | \
wzr-hp-ag300h | \
whr-g301n | \
whr-hp-g300n | \
@@
-124,18
+131,26
@@
platform_check_image() {
echo "Invalid image type."
return 1
}
echo "Invalid image type."
return 1
}
- return 0
- ;;
- wndr3700)
- [ "$magic_long" != "33373030" ] && {
- echo "Invalid image type."
+
+ local hwid
+ local imageid
+
+ hwid=$(tplink_get_hwid)
+ imageid=$(tplink_get_image_hwid "$1")
+
+ [ "$hwid" != "$imageid" ] && {
+ echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
return 1
}
return 1
}
+
return 0
;;
return 0
;;
- wndr3700v2)
- [ "$magic_long" != "33373031" ] && {
- echo "Invalid image type."
+ wndr3700)
+ local hw_magic
+
+ hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
+ [ "$magic_long" != "$hw_magic" ] && {
+ echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
return 1
}
return 0
return 1
}
return 0
This page took
0.024596 seconds
and
4
git commands to generate.