mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-14 00:49:06 +01:00
11 lines
173 B
Bash
Executable file
11 lines
173 B
Bash
Executable file
#!/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
|
|
}
|