lantiq: fix board detection helpers
[openwrt.git] / target / linux / lantiq / base-files / lib / functions / lantiq.sh
index ca52d08..ed76cd8 100644 (file)
@@ -1,9 +1,9 @@
 #!/bin/sh
 
 lantiq_board_id() {
-       grep "^system type" /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g" | sed "s/.* - \(.*\) - .*/\1/g"
+       grep "^machine" /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/\(.*\) - .*/\1/g"             
 }
 
 lantiq_board_name() {
-       grep "^system type" /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g" | sed "s/.* - \(.*\)/\1/g"
+       grep "^machine" /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/.* - \(.*\)/\1/g"
 }