78f253f9b1
Add support for Comtrend VR-3026e v1. The device is almost identical to the Comtrend VR-3025un. Signed-off-by: Martin Tesar <tesarmar@gmail.com> Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 46752
38 lines
439 B
Bash
38 lines
439 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 |\
|
|
magic |\
|
|
p870hw-51a_v2 |\
|
|
rta770bw |\
|
|
rta770w |\
|
|
spw303v |\
|
|
v2110 |\
|
|
v2500v_bb |\
|
|
vr-3025u |\
|
|
vr-3025un |\
|
|
vr-3026e |\
|
|
wap-5813n)
|
|
do_fixcrc
|
|
;;
|
|
esac
|
|
|