base-files: Added uci-defaults script to run mtd fixtrx on firstboot for devices...
authorcshore <cshore@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 26 Dec 2010 04:18:04 +0000 (04:18 +0000)
committercshore <cshore@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 26 Dec 2010 04:18:04 +0000 (04:18 +0000)
Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24836 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/brcm63xx/base-files/etc/uci-defaults/brcm63xx_fixcrc.sh [new file with mode: 0755]

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 (executable)
index 0000000..fe35dc7
--- /dev/null
@@ -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
+
This page took 0.028191 seconds and 4 git commands to generate.