mirror of https://github.com/hak5/openwrt.git
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
|
||
|
}
|