mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
12 lines
173 B
Bash
12 lines
173 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2010 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
ppc40x_board_name() {
|
||
|
local model
|
||
|
|
||
|
model=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /model/ {print $2}' /proc/cpuinfo)
|
||
|
echo $model
|
||
|
}
|