From f3a925da0090162a7fb4305fbba9649081d01109 Mon Sep 17 00:00:00 2001 From: juhosg Date: Tue, 24 Feb 2009 18:16:40 +0000 Subject: [ar71xx] add more base-files git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14653 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/ar71xx/base-files/lib/ar71xx.sh | 49 ++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 target/linux/ar71xx/base-files/lib/ar71xx.sh (limited to 'target/linux/ar71xx/base-files/lib/ar71xx.sh') diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh new file mode 100755 index 000000000..299d0ed45 --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -0,0 +1,49 @@ +#!/bin/sh +# +# Copyright (C) 2009 OpenWrt.org +# + +ar71xx_board_name() { + local machine + local name + + machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo) + + case "$machine" in + *LS-SR71) + name="ls-sr71" + ;; + *MZK-W04NU) + name="mzk-w04nu" + ;; + *RB-411) + name="rb-411" + ;; + *RB-433) + name="rb-433" + ;; + *RB-450) + name="rb-450" + ;; + *RB-493) + name="rb-493" + ;; + *RouterStation) + name="routerstation" + ;; + *TEW-632BRP) + name="tew-632brp" + ;; + *TL-WR941ND) + name="tl-wr941nd" + ;; + *WP543) + name="wp543" + ;; + *) + name="generic" + ;; + esac + + echo $name +} -- cgit v1.2.3