532c3f3218
This patch adds support for the Netgear EVG2000 VoIP Gateway to the bcm63xx targets. This device was not sold to the general public, but rather is/was provided by telcos to customers in Sweden, Australia, Singapore and other parts of asia. Known issues: - Unable to detect 53115 switch. This appear to be a problem with probing for the PHY using MDIO and results in error 5. Doesn't seem to be a problem with the configuration, and could use someone with experience to have a look at it. - Uses the b43 driver as using the OpenWRT/LEDE broadcom-wl driver fails to load the firmware for the 4322, so 802.11n is not supported. More info on the device and the research can be found at: https://wiki.openwrt.org/toh/netgear/evg2000 https://wikidevi.com/wiki/Netgear_EVG2000 https://github.com/Xotic750/mirror-lede/tree/evg2000 https://forum.openwrt.org/viewtopic.php?id=63950 Signed-off-by: Graham Fairweather <xotic750@gmail.com> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
40 lines
475 B
Bash
40 lines
475 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
#
|
|
#
|
|
|
|
. /lib/brcm63xx.sh
|
|
|
|
do_fixcrc() {
|
|
mtd fixtrx linux
|
|
}
|
|
|
|
case "$(brcm63xx_board_name)" in
|
|
a4001n |\
|
|
a4001n1 |\
|
|
ar-5381u |\
|
|
ar-5387un |\
|
|
bcm96328avng |\
|
|
bcm963281tan |\
|
|
cpva502p |\
|
|
cpva642 |\
|
|
ct-6373 |\
|
|
dsl-274xb-f |\
|
|
evg2000 |\
|
|
hg622 |\
|
|
magic |\
|
|
p870hw-51a_v2 |\
|
|
r5010un_v2 |\
|
|
rta770bw |\
|
|
rta770w |\
|
|
spw303v |\
|
|
v2110 |\
|
|
v2500v_bb |\
|
|
vr-3025u |\
|
|
vr-3025un |\
|
|
vr-3026e |\
|
|
wap-5813n)
|
|
do_fixcrc
|
|
;;
|
|
esac
|