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