openwrtv3/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc
Anthony Sepa f9b67b89d3 brcm63xx: add support for the Actiontec R1000H gateway
SOC: Broadcom BCM6368 (2 * Broadcom BMIPS4350 V3.1 / 400 MHz)
Flash size: 32MB (split 16/16 dual boot)
RAM size: 64MB
Wireless: BCM432x 802.11a/b/g/n(pci)
Ethernet: Broadcom BCM53115
USB: 1 x USB 2.0

Known issues:
 - Unable to detect 53115 switch attached to MDIO. Not supported
 - No support for the cable port

More info on the device and the research can be found at:
http://www.actiontec.com/212.html

Same FCC ID as:
https://wikidevi.com/wiki/Actiontec_V1000H_(Telus)

Signed-off-by: Anthony Sepa <anthonysepa@yahoo.ca>
[jonas.gorski: fix commit subject/message]
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
2017-06-30 12:12:17 +02:00

42 lines
498 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 |\
r1000h |\
r5010un_v2 |\
rta770bw |\
rta770w |\
spw303v |\
v2110 |\
v2500v_bb |\
vh4032n |\
vr-3025u |\
vr-3025un |\
vr-3026e |\
wap-5813n)
do_fixcrc
;;
esac