aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/base-files/etc/uci-defaults/fixseama
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-10-18 07:23:03 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-10-18 07:23:03 +0000
commit06edafd079348f84ce58807f70c1cff428a18934 (patch)
tree0c79c0dad8e3320520bb14f6b14536afd5ae38b7 /target/linux/ramips/base-files/etc/uci-defaults/fixseama
parentd1a253a2fdc0afce1998e82dacece9a26dbe569e (diff)
downloadupstream-06edafd079348f84ce58807f70c1cff428a18934.tar.gz
upstream-06edafd079348f84ce58807f70c1cff428a18934.tar.bz2
upstream-06edafd079348f84ce58807f70c1cff428a18934.zip
ramips: add user space support for the DIR-645
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 33844
Diffstat (limited to 'target/linux/ramips/base-files/etc/uci-defaults/fixseama')
-rwxr-xr-xtarget/linux/ramips/base-files/etc/uci-defaults/fixseama20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/fixseama b/target/linux/ramips/base-files/etc/uci-defaults/fixseama
new file mode 100755
index 0000000000..d8bed79514
--- /dev/null
+++ b/target/linux/ramips/base-files/etc/uci-defaults/fixseama
@@ -0,0 +1,20 @@
+#!/bin/sh
+#
+# Copyright (C) 2012 OpenWrt.org
+#
+
+. /lib/ramips.sh
+
+fix_seama_header() {
+ local part=$1
+
+ mtd fixseama $part
+}
+
+board=$(ramips_board_name)
+
+case "$board" in
+dir-645)
+ fix_seama_header kernel
+ ;;
+esac