diff options
author | Daniel Dickinson <daniel@cshore.neomailbox.net> | 2010-12-26 04:18:04 +0000 |
---|---|---|
committer | Daniel Dickinson <daniel@cshore.neomailbox.net> | 2010-12-26 04:18:04 +0000 |
commit | dda75774e9b94c0ca362b1447fc4176823f269da (patch) | |
tree | 2c17c788bd5cb17154927c192d914a1a860226d5 /target/linux/brcm63xx/base-files | |
parent | 391a1c551b391681c5a6ee4a6f1dd3dc9ed290b0 (diff) | |
download | upstream-dda75774e9b94c0ca362b1447fc4176823f269da.tar.gz upstream-dda75774e9b94c0ca362b1447fc4176823f269da.tar.bz2 upstream-dda75774e9b94c0ca362b1447fc4176823f269da.zip |
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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24836 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/base-files')
-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 0000000000..fe35dc7613 --- /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 + |