openwrtv3/target/linux/ar71xx/base-files/etc/uci-defaults/09_fix-seama-header
Gabor Juhos 7038fd9c52 ar71xx: add userspace support for WD My Net N750
Signed-off-by: Felix Kaechele <heffer@fedoraproject.org>
[juhosg: remove the image generation part until the ethernet
         switch issue is resolved]
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 39078
2013-12-16 07:16:43 +00:00

21 lines
232 B
Bash
Executable file

#!/bin/sh
#
# Copyright (C) 2013 OpenWrt.org
#
. /lib/ar71xx.sh
fix_seama_header() {
local part=$1
mtd fixseama $part
}
board=$(ar71xx_board_name)
case "$board" in
mynet-n600 | \
mynet-n750)
fix_seama_header kernel
;;
esac