From: John Crispin Date: Thu, 25 Apr 2013 19:03:37 +0000 (+0000) Subject: lantiq: fix board detection helpers X-Git-Tag: reboot~10585 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=520bf463750cf0d5dc582797dc1a0a090e056f4f;p=openwrt%2Fopenwrt.git lantiq: fix board detection helpers Signed-off-by: John Crispin SVN-Revision: 36444 --- diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq.sh b/target/linux/lantiq/base-files/lib/functions/lantiq.sh index ca52d08a60..ed76cd8014 100644 --- a/target/linux/lantiq/base-files/lib/functions/lantiq.sh +++ b/target/linux/lantiq/base-files/lib/functions/lantiq.sh @@ -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" }