diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-02-24 18:16:40 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-02-24 18:16:40 +0000 |
commit | 9be9eb8ab1db4f28a839170f0d17a40cc2f6123a (patch) | |
tree | 0879794ef04e487d64284f0e076ce25f6f38a801 /target/linux/ar71xx/base-files/lib | |
parent | ba2973b938c35652333b0f3d6a00d46bcb3acb0e (diff) | |
download | mtk-20170518-9be9eb8ab1db4f28a839170f0d17a40cc2f6123a.zip mtk-20170518-9be9eb8ab1db4f28a839170f0d17a40cc2f6123a.tar.gz mtk-20170518-9be9eb8ab1db4f28a839170f0d17a40cc2f6123a.tar.bz2 |
add more base-files
SVN-Revision: 14653
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 49 |
1 files changed, 49 insertions, 0 deletions
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 0000000..299d0ed --- /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 +} |