blob: 2840eb1940e4a5eb3a5b7a526526c9c80acf754b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/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 |\
96328dg2x2 |\
96358-502V |\
96368M-1341N |\
96368M-1541N |\
96369R-1231N |\
AW4339U |\
"CPVA502+" |\
CPVA642 |\
CT6373-1 |\
MAGIC |\
P870HW-51a_v2 |\
RTA770BW |\
RTA770W |\
V2110 |\
V2500V_BB)
do_fixcrc
;;
esac
|