openwrtv4/target/linux/ramips/base-files/lib/ramips.sh
Gabor Juhos d5a7e2f5c1 ramips: initial board support for MOFI3500-3GN
This patch adds initial board support for the MoFi Network MOFI3500-3GN
(Ralink RT3052F SoC, 8MB flash, 32MB ram, wireless N, USB-OTG).  This
router is basically the NA version of the HW550-3G.

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

SVN-Revision: 26466
2011-04-04 08:43:07 +00:00

37 lines
511 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"
;;
*"MoFi Network MOFI3500-3GN")
name="mofi3500-3gn"
;;
*)
name="generic"
;;
esac
echo $name
}