ugps: Add option disabled

Like many other packages, an option to disable can be practical.

Signed-off-by: Bruno Randolf <br1@einfach.org>
v19.07.3_mercusys_ac12_duma
Bruno Randolf 6 years ago committed by John Crispin
parent 01793e8752
commit 6b14a73f4f

@ -1,3 +1,4 @@
config gps
option 'tty' 'ttyACM0'
option 'adjust_time' '1'
option 'disabled' '1'

@ -13,6 +13,9 @@ service_triggers() {
start_service() {
local tty="$(uci get gps.@gps[-1].tty)"
local atime="$(uci get gps.@gps[-1].adjust_time)"
local disabled="$(uci get gps.@gps[-1].disabled || echo 0)"
[ "$disabled" == "0" ] || return
[ -c "$tty" ] || {
tty="/dev/$tty"

Loading…
Cancel
Save