summaryrefslogtreecommitdiffstats
path: root/target/linux/ppc40x/base-files/lib/ppc40x.sh
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-12 12:21:18 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-12 12:21:18 +0000
commit933921a3b139c77f9c8e85b2cccc383ce00e0b19 (patch)
tree2840f47603b74da358d67ae769bbb4f2c215fe66 /target/linux/ppc40x/base-files/lib/ppc40x.sh
parentff9eb9da70a7599f6cc3b55a275e1faecc530878 (diff)
ppc40x: add sysupgrade support
Cc: backfire@openwrt.org git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20821 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ppc40x/base-files/lib/ppc40x.sh')
-rwxr-xr-xtarget/linux/ppc40x/base-files/lib/ppc40x.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/ppc40x/base-files/lib/ppc40x.sh b/target/linux/ppc40x/base-files/lib/ppc40x.sh
new file mode 100755
index 000000000..8a6c48776
--- /dev/null
+++ b/target/linux/ppc40x/base-files/lib/ppc40x.sh
@@ -0,0 +1,11 @@
+#!/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
+}