lantiq: remove lantiq_board_model, it is unused
[openwrt/openwrt.git] / target / linux / lantiq / base-files / lib / functions / lantiq.sh
index e4eb4d723f19d147c36f2d7b2ef818b55e8b5f7f..d9758f50f6b9b984142e06685be98db4f787e2a3 100644 (file)
@@ -1,33 +1,5 @@
 #!/bin/sh
 
-lantiq_board_detect() {
-       name=`grep "^machine" /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/\(.*\) - .*/\1/g"`
-       model=`grep "^machine" /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/.* - \(.*\)/\1/g"`
-       [ -z "$name" ] && name="unknown"
-       [ -z "$model" ] && model="unknown"
-       [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
-       echo $name > /tmp/sysinfo/board_name
-       echo $model > /tmp/sysinfo/model
-}
-
-lantiq_board_model() {
-       local model
-
-       [ -f /tmp/sysinfo/model ] && model=$(cat /tmp/sysinfo/model)
-       [ -z "$model" ] && model="unknown"
-
-       echo "$model"
-}
-
-lantiq_board_name() {
-       local name
-
-       [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
-       [ -z "$name" ] && name="unknown"
-
-       echo "$name"
-}
-
 lantiq_get_dt_led() {
        local label
        local ledpath
@@ -39,3 +11,7 @@ lantiq_get_dt_led() {
 
        echo "$label"
 }
+
+lantiq_is_vdsl_system() {
+       grep -qE "system type.*: (VR9|xRX200)" /proc/cpuinfo
+}