diff options
author | Daniel Dickinson <crazycshore@gmail.com> | 2010-12-26 04:18:04 +0000 |
---|---|---|
committer | Daniel Dickinson <crazycshore@gmail.com> | 2010-12-26 04:18:04 +0000 |
commit | 6ee541168614bebd8f3113f0a81d309ddfe0db9c (patch) | |
tree | 53e0bde11c1f892ac0c0ce8462a3684eb6631df6 /target | |
parent | daa854ee2d213d21938760e5d52d27212e947054 (diff) | |
download | mtk-20170518-6ee541168614bebd8f3113f0a81d309ddfe0db9c.zip mtk-20170518-6ee541168614bebd8f3113f0a81d309ddfe0db9c.tar.gz mtk-20170518-6ee541168614bebd8f3113f0a81d309ddfe0db9c.tar.bz2 |
base-files: Added uci-defaults script to run mtd fixtrx on firstboot for devices that need it.
Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net>
SVN-Revision: 24836
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh b/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh new file mode 100755 index 0000000..fe35dc7 --- /dev/null +++ b/target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh @@ -0,0 +1,20 @@ +#!/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 + |