48c1fdd046
This drops the shebang from all target files for /lib and /etc/uci-defaults folders, as these are sourced and the shebang is useless. While at it, fix the executable flag on a few of these files. This does not touch ar71xx, as this target is just used for backporting now and applying cosmetic changes would just complicate things. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
26 lines
406 B
Plaintext
26 lines
406 B
Plaintext
#
|
|
# 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
|
|
dlink,dap-1522-a1)
|
|
fix_checksum wrg
|
|
;;
|
|
dlink,dch-m225|\
|
|
dlink,dir-645|\
|
|
dlink,dir-860l-b1|\
|
|
samsung,cy-swr1100)
|
|
fix_checksum seama
|
|
;;
|
|
esac
|