aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-03-03 12:47:28 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-03-03 12:47:28 +0000
commit59ad675ef1c86f6c28a60b78a6c30d02dd22a68d (patch)
tree5524ab910122eaaa7a7d2c337134f4a247bcc2b5 /target
parent50e51e5eccc6ee2f9c87e880f6520ec62f995c6c (diff)
downloadupstream-59ad675ef1c86f6c28a60b78a6c30d02dd22a68d.tar.gz
upstream-59ad675ef1c86f6c28a60b78a6c30d02dd22a68d.tar.bz2
upstream-59ad675ef1c86f6c28a60b78a6c30d02dd22a68d.zip
ramips: add user-space detection for ALL5002/ALL5003
Signed-off-by: Daniel Golle <dgolle@allnet.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35852
Diffstat (limited to 'target')
-rwxr-xr-xtarget/linux/ramips/base-files/lib/ramips.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh
index 4b3e362acc..0702145358 100755
--- a/target/linux/ramips/base-files/lib/ramips.sh
+++ b/target/linux/ramips/base-files/lib/ramips.sh
@@ -6,6 +6,19 @@
RAMIPS_BOARD_NAME=
RAMIPS_MODEL=
+all500x_board_detect() {
+ local systype
+
+ systype=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /system type/ {print $2}' /proc/cpuinfo)
+ case "$systype" in
+ *"RT5350"*)
+ RAMIPS_MODEL="Allnet ALL5003"
+ ;;
+ *"RT3352"*)
+ RAMIPS_MODEL="Allnet ALL5002"
+ ;;
+ esac
+}
ramips_board_detect() {
local machine
@@ -193,6 +206,12 @@ ramips_board_detect() {
;;
esac
+ case "$machine" in
+ *"Allnet ALL5002/ALL5003")
+ all500x_board_detect
+ ;;
+ esac
+
[ -z "$RAMIPS_BOARD_NAME" ] && RAMIPS_BOARD_NAME="$name"
[ -z "$RAMIPS_MODEL" ] && RAMIPS_MODEL="$machine"