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

. /lib/functions.sh

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

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

board=$(board_name)

case "$board" in
cy-swr1100 | \
dch-m225 | \
dir-645 | \
dir-860l-b1)
	fix_checksum seama
	;;
dap-1522-a1)
	fix_checksum wrg
	;;
esac