summaryrefslogtreecommitdiff
path: root/target/linux/ar71xx/base-files/lib
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-12-05 13:03:54 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-12-05 13:03:54 +0000
commit4cc2b9bb06436a1a57fc3620ea62c4835f9b7d51 (patch)
tree7c5aa2c06aaeaf9aa475f27f074038b375e774ac /target/linux/ar71xx/base-files/lib
parent78699c2e51e85d8f56e882d250136f9d8fbdd632 (diff)
downloadmtk-20170518-4cc2b9bb06436a1a57fc3620ea62c4835f9b7d51.zip
mtk-20170518-4cc2b9bb06436a1a57fc3620ea62c4835f9b7d51.tar.gz
mtk-20170518-4cc2b9bb06436a1a57fc3620ea62c4835f9b7d51.tar.bz2
ar71xx: rewrite WNDR3700/3800 handling
SVN-Revision: 29434
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/ar71xx.sh52
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/upgrade/platform.sh14
2 files changed, 49 insertions, 17 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
index 02286e9..22e951d 100755
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
@@ -6,6 +6,48 @@
AR71XX_BOARD_NAME=
AR71XX_MODEL=
+ar71xx_get_mem_total() {
+ $(awk '/MemTotal:/ {print($2)}' /proc/meminfo)
+}
+
+ar71xx_get_mtd_part_magic() {
+ local part="$1"
+ local mtd
+
+ mtd=$(find_mtd_part $part)
+ [ -z "$mtd" ] && return
+
+ dd if=$mtd bs=4 count=1 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
+}
+
+wndr3700_board_detect() {
+ local machine="$1"
+ local magic
+ local name
+
+ name="wndr3700"
+
+ magic="$(ar71xx_get_mtd_part_magic firmware)"
+ case $magic in
+ "33373030")
+ machine="NETGEAR WNDR3700"
+ ;;
+ "33373031")
+ local mt
+
+ mt=$(ar71xx_get_mem_total)
+ if [ "$mt" -lt "65536" ]; then
+ machine="NETGEAR WNDR3700v2"
+ else
+ machine="NETGEAR WNDR3800"
+ fi
+ ;;
+ esac
+
+ AR71XX_BOARD_NAME="$name"
+ AR71XX_MODEL="$machine"
+}
+
ar71xx_board_detect() {
local machine
local name
@@ -169,14 +211,8 @@ ar71xx_board_detect() {
*WP543)
name="wp543"
;;
- *WNDR3700)
- name="wndr3700"
- ;;
- *WNDR3700v2)
- name="wndr3700v2"
- ;;
- *WNDR3800)
- name="wndr3800"
+ *"WNDR3700/WNDR3800")
+ wndr3700_board_detect "$machine"
;;
*WNR2000)
name="wnr2000"
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
index cc327e6..1de9077 100755
--- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
@@ -127,15 +127,11 @@ platform_check_image() {
return 0
;;
wndr3700)
- [ "$magic_long" != "33373030" ] && {
- echo "Invalid image type."
- return 1
- }
- return 0
- ;;
- wndr3700v2|wndr3800)
- [ "$magic_long" != "33373031" ] && {
- echo "Invalid image type."
+ 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