openwrtv4/target/linux/ramips/base-files/etc/uci-defaults/09_fix-seama-header
Luka Perkov 92e6e80080 targets: files in uci-defaults do not need to be executables
Signed-off-by: Luka Perkov <luka@openwrt.org>

SVN-Revision: 44304
2015-02-07 19:58:52 +00:00

22 lines
245 B
Bash

#!/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
cy-swr1100 | \
dir-645 | \
dir-860l-b1)
fix_seama_header kernel
;;
esac