mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-07 16:16:15 +02:00
c91e2ce710
Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24836 3c298f89-4303-0410-b956-a3cf2f4a3e73
21 lines
189 B
Bash
Executable File
21 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
#
|
|
#
|
|
|
|
. /lib/brcm63xx.sh
|
|
|
|
do_fixcrc() {
|
|
mtd fixtrx linux
|
|
}
|
|
|
|
brcm63xx_detect
|
|
|
|
case "$board_name" in
|
|
"bcm63xx/CPVA642 "*)
|
|
do_fixcrc
|
|
;;
|
|
esac
|
|
|