diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-10-19 19:44:37 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-10-19 19:44:37 +0000 |
commit | 2ff89c28473c2fabfe3faa11282e623ac20f0bce (patch) | |
tree | c9420c4aef0888a6f5a662e7a106a1d44bea4018 /target/linux/ramips/base-files/etc/uci-defaults/fixseama | |
parent | c9eaff156a0ed7aeb827ec1ebaf22dcbde8cf117 (diff) | |
download | openwrt-2ff89c28473c2fabfe3faa11282e623ac20f0bce.tar.gz openwrt-2ff89c28473c2fabfe3faa11282e623ac20f0bce.zip |
AA: ramips: add user space support for the DIR-645
Backport of r33844.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@33873 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/base-files/etc/uci-defaults/fixseama')
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/fixseama | 20 |
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 000000000..d8bed7951 --- /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 |