You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
370 B
34 lines
370 B
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
#
|
|
#
|
|
|
|
. /lib/brcm63xx.sh
|
|
|
|
do_fixcrc() {
|
|
mtd fixtrx linux
|
|
}
|
|
|
|
brcm63xx_detect
|
|
|
|
case "$board_name" in
|
|
96328avng |\
|
|
96328A-1241N |\
|
|
96328A-1441N1 |\
|
|
963281TAN |\
|
|
963281T_TEF |\
|
|
96358-502V |\
|
|
"CPVA502+" |\
|
|
AW4339U |\
|
|
CPVA642 |\
|
|
CT6373-1 |\
|
|
MAGIC |\
|
|
V2110 |\
|
|
RTA770BW |\
|
|
RTA770W |\
|
|
V2500V_BB)
|
|
do_fixcrc
|
|
;;
|
|
esac
|
|
|
|
|