mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 13:06:14 +00:00
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>
20 lines
293 B
Plaintext
20 lines
293 B
Plaintext
#
|
|
# Copyright (C) 2019 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions.sh
|
|
|
|
board=$(board_name)
|
|
|
|
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
|
|
}
|
|
|
|
case "$board" in
|
|
dlink,dir-685)
|
|
fixwrgg
|
|
;;
|
|
esac
|