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>
22 lines
464 B
Text
22 lines
464 B
Text
. /lib/functions.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
|
|
}
|
|
|
|
fixwrgg() {
|
|
local kernel_size=$(sed -n 's/mtd[0-9]*: \([0-9a-f]*\).*"kernel".*/\1/p' /proc/mtd)
|
|
[ "$kernel_size" ] && mtd -c 0x$kernel_size fixwrgg firmware
|
|
}
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
dlink,dap-2695-a1)
|
|
fixwrgg
|
|
;;
|
|
qihoo,c301)
|
|
fix_seama_header
|
|
;;
|
|
esac
|