diff options
author | John Crispin <john@openwrt.org> | 2012-12-15 02:01:00 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-12-15 02:01:00 +0000 |
commit | 1dece11487e937deb4691f73545c1403d018421d (patch) | |
tree | 4a2e99f213629991d7a9520a3408028e3b42f9b3 /target/linux/lantiq/base-files/lib/functions | |
parent | 601bc28669719c8ef004e108cb0bc9e5c784412e (diff) | |
download | upstream-1dece11487e937deb4691f73545c1403d018421d.tar.gz upstream-1dece11487e937deb4691f73545c1403d018421d.tar.bz2 upstream-1dece11487e937deb4691f73545c1403d018421d.zip |
cleanup basefiles
SVN-Revision: 34698
Diffstat (limited to 'target/linux/lantiq/base-files/lib/functions')
-rw-r--r-- | target/linux/lantiq/base-files/lib/functions/lantiq.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq.sh b/target/linux/lantiq/base-files/lib/functions/lantiq.sh new file mode 100644 index 0000000000..ca52d08a60 --- /dev/null +++ b/target/linux/lantiq/base-files/lib/functions/lantiq.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +lantiq_board_id() { + grep "^system type" /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g" | sed "s/.* - \(.*\) - .*/\1/g" +} + +lantiq_board_name() { + grep "^system type" /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g" | sed "s/.* - \(.*\)/\1/g" +} |