lantiq: fix board detection helpers
[openwrt/staging/jow.git] / target / linux / lantiq / base-files / lib / functions / lantiq.sh
1 #!/bin/sh
2
3 lantiq_board_id() {
4 grep "^machine" /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/\(.*\) - .*/\1/g"
5 }
6
7 lantiq_board_name() {
8 grep "^machine" /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/.* - \(.*\)/\1/g"
9 }