diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-10-07 23:24:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-10-07 23:24:02 +0000 |
commit | bbb2b870022cff48dc79e3231ed2aed947f67e6a (patch) | |
tree | 989cb22d8d088b880147652d92318d5c783e6c2a /target/linux/cns3xxx/base-files/lib/cns3xxx.sh | |
parent | bb5ccd89c3be83ca96943327a481a491bc57484d (diff) | |
download | upstream-bbb2b870022cff48dc79e3231ed2aed947f67e6a.tar.gz upstream-bbb2b870022cff48dc79e3231ed2aed947f67e6a.tar.bz2 upstream-bbb2b870022cff48dc79e3231ed2aed947f67e6a.zip |
cns3xxx: add sysupgrade support
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
target/linux/cns3xxx/base-files/lib/cns3xxx.sh | 22 ++
target/linux/cns3xxx/base-files/lib/upgrade/platform.sh | 122 ++++++++++++++++
target/linux/cns3xxx/image/Makefile | 19 +-
3 files changed, 159 insertions(+), 4 deletions(-)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33650 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cns3xxx/base-files/lib/cns3xxx.sh')
-rw-r--r-- | target/linux/cns3xxx/base-files/lib/cns3xxx.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/target/linux/cns3xxx/base-files/lib/cns3xxx.sh b/target/linux/cns3xxx/base-files/lib/cns3xxx.sh new file mode 100644 index 0000000000..d446777c02 --- /dev/null +++ b/target/linux/cns3xxx/base-files/lib/cns3xxx.sh @@ -0,0 +1,22 @@ +#!/bin/sh +# +# Copyright (C) 2012 OpenWrt.org +# + +cns3xxx_board_name() { + local machine + local name + + machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /Hardware/ {print $2}' /proc/cpuinfo) + + case "$machine" in + "Gateworks Corporation Laguna"*) + name="laguna" + ;; + *) + name="generic"; + ;; + esac + + echo $name +} |