mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 18:20:37 +02:00
bb8dd176cc
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26466 3c298f89-4303-0410-b956-a3cf2f4a3e73
38 lines
511 B
Bash
Executable File
38 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
|
|
}
|