summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-04-25 19:03:05 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-04-25 19:03:05 +0000
commitdc339f1a1a6b61a24fcd58eb942f418cde9e699c (patch)
tree9d1c5aa778900ad8193a2c6fec2403a892cc3ec3 /target
parentef18e846dcfb55f39794bc510da4f85da85d5452 (diff)
ramips: remove now unneeded user-space board detection
Now that ALL5002 and ALL5003 each got their own DTS and board names, remove the now no longer needed user-space part which previously differentiated between ALL5002 and ALL5003. Signed-off-by: Daniel Golle <dgolle@allnet.de> Patchwork: http://patchwork.openwrt.org/patch/3558/ Acked-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36436 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rwxr-xr-xtarget/linux/ramips/base-files/lib/ramips.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh
index 99bdbdd80..63af00d03 100755
--- a/target/linux/ramips/base-files/lib/ramips.sh
+++ b/target/linux/ramips/base-files/lib/ramips.sh
@@ -6,20 +6,6 @@
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
local name
@@ -230,12 +216,6 @@ ramips_board_detect() {
;;
esac
- case "$machine" in
- *"Allnet ALL500"[23]*)
- all500x_board_detect
- ;;
- esac
-
[ -z "$RAMIPS_BOARD_NAME" ] && RAMIPS_BOARD_NAME="$name"
[ -z "$RAMIPS_MODEL" ] && RAMIPS_MODEL="$machine"