openwrtv4/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc
Daniel Gonzalez Cabanelas 41ad9ed13a brcm63xx: Add Observa VH4032N support
Add support for the Observa Telecom VH4032N router.

This is another BCM6368 router, 128 MB RAM, 32MB flash and 3 USB
host ports.

The wifi chip is an onboard Broadcom BCM43222.

Signed-off-by: Daniel Gonzalez Cabanelas <dgcbueu@gmail.com>
[jonas.gorski: use gpio-hog instead of abusing ephy-reset]
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
2017-02-09 22:02:45 +01:00

41 lines
487 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 |\
vh4032n |\
vr-3025u |\
vr-3025un |\
vr-3026e |\
wap-5813n)
do_fixcrc
;;
esac