Files
wifipineapple-openwrt/target/linux/brcm63xx/base-files/etc/uci-defaults/09_fix_crc
Mirko Vogt 478a38a1d0 fix trx checksum after first boot and add led/button definitions for boards RTA770BW and RTA770W
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35501 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-02-05 14:57:43 +00:00

35 lines
370 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
96328avng |\
96328A-1241N |\
96328A-1441N1 |\
963281TAN |\
963281T_TEF |\
96358-502V |\
"CPVA502+" |\
AW4339U |\
CPVA642 |\
CT6373-1 |\
MAGIC |\
V2110 |\
RTA770BW |\
RTA770W |\
V2500V_BB)
do_fixcrc
;;
esac