From: Mathias Kresin Date: Fri, 16 Jun 2017 22:17:18 +0000 (+0200) Subject: base-files: make ucidef_set_led_rssi offset and factor optional X-Git-Tag: v19.07.0-rc1~6227 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=4cdbf4014b88034a37026234f39f644d620d8db1;p=openwrt%2Fstaging%2Fhauke.git base-files: make ucidef_set_led_rssi offset and factor optional The offset and factor are only related for LEDs which can have different brightness values. But binary LEDs are more common and don't require any further configuation than setting the factor to 1. Use offset = 0 and factor = 1 in case nothing else is specified. Signed-off-by: Mathias Kresin --- diff --git a/package/base-files/files/lib/functions/uci-defaults.sh b/package/base-files/files/lib/functions/uci-defaults.sh index 6578202269..82ac1d2a4d 100755 --- a/package/base-files/files/lib/functions/uci-defaults.sh +++ b/package/base-files/files/lib/functions/uci-defaults.sh @@ -439,8 +439,8 @@ ucidef_set_led_rssi() { local iface="$4" local minq="$5" local maxq="$6" - local offset="$7" - local factor="$8" + local offset="${7:-0}" + local factor="${8:-1}" _ucidef_set_led_common "$1" "$2" "$3"