summaryrefslogtreecommitdiff
path: root/target/linux/ramips/base-files/etc/uci-defaults/09_fix-seama-header
blob: 7a0a325d4b6b698625c37fbcb139b168362641ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#
# Copyright (C) 2012 OpenWrt.org
#

. /lib/ramips.sh

fix_seama_header() {
	local kernel_size=$(sed -n 's/mtd[0-9]*: \([0-9a-f]*\).*"kernel".*/\1/p' /proc/mtd)

	[ "$kernel_size" ] && mtd -c 0x$kernel_size fixseama firmware
}

board=$(ramips_board_name)

case "$board" in
cy-swr1100 | \
dir-645 | \
dir-860l-b1)
	fix_seama_header
	;;
esac