1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 16:19:53 +03:00
openwrt-xburst/target/linux/ramips/base-files/lib/ramips.sh
juhosg 8cde29c6b1 ramips: initial board support for Aztech HW550-3G
This patch adds initial support for the Aztech HW550-3G (Ralink
RT3052f SoC, 8MB flash, 32MB dram).  Ethernet is not working yet.
Wireless appears to work fine.  USB does not work yet (as with other
Ralink boards).

Signed-off-by: Layne Edwards <ledwards76@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26123 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-03-13 16:34:52 +00:00

35 lines
453 B
Bash
Executable File

#!/bin/sh
#
# Copyright (C) 2010 OpenWrt.org
#
ramips_board_name() {
local machine
local name
machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo)
case "$machine" in
*"DIR-300 revB")
name="dir-300-b1"
;;
*"La Fonera 2.0N")
name="fonera20n"
;;
*"V22RW-2X2")
name="v22rw-2x2"
;;
*"WHR-G300N")
name="whr-g300n"
;;
*"Aztech HW550-3G")
name="hw550-3g"
;;
*)
name="generic"
;;
esac
echo $name
}