c330408ea9
Use the generic board detection for the D-Link DAP-1522 A1 instead of the target specific one as all recent additions are doing. Signed-off-by: Mathias Kresin <dev@kresin.me>
26 lines
396 B
Bash
26 lines
396 B
Bash
#!/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
|
|
;;
|
|
dlink,dap-1522-a1)
|
|
fix_checksum wrg
|
|
;;
|
|
esac
|