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.
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
. /lib/brcm63xx.sh
|
|
|
|
|
|
|
|
do_fixcrc() {
|
|
|
|
mtd fixtrx linux
|
|
|
|
}
|
|
|
|
|
|
|
|
brcm63xx_detect
|
|
|
|
|
|
|
|
case "$board_name" in
|
|
|
|
"bcm63xx/CPVA642 "* | "bcm63xx/MAGIC "* | "bcm63xx/V2500V_BB "* | "bcm63xx/V2110 "*)
|
|
|
|
do_fixcrc
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|