2010-12-26 12:18:04 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
. /lib/brcm63xx.sh
|
|
|
|
|
|
|
|
do_fixcrc() {
|
|
|
|
mtd fixtrx linux
|
|
|
|
}
|
|
|
|
|
|
|
|
brcm63xx_detect
|
|
|
|
|
|
|
|
case "$board_name" in
|
2011-05-20 18:06:07 +08:00
|
|
|
"bcm63xx/CPVA642 "* | "bcm63xx/MAGIC "* | "bcm63xx/V2500V_BB "* )
|
2010-12-26 12:18:04 +08:00
|
|
|
do_fixcrc
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|