ugps: Add option disabled
Like many other packages, an option to disable can be practical. Signed-off-by: Bruno Randolf <br1@einfach.org>
This commit is contained in:
parent
01793e8752
commit
6b14a73f4f
@ -1,3 +1,4 @@
|
|||||||
config gps
|
config gps
|
||||||
option 'tty' 'ttyACM0'
|
option 'tty' 'ttyACM0'
|
||||||
option 'adjust_time' '1'
|
option 'adjust_time' '1'
|
||||||
|
option 'disabled' '1'
|
||||||
|
@ -13,6 +13,9 @@ service_triggers() {
|
|||||||
start_service() {
|
start_service() {
|
||||||
local tty="$(uci get gps.@gps[-1].tty)"
|
local tty="$(uci get gps.@gps[-1].tty)"
|
||||||
local atime="$(uci get gps.@gps[-1].adjust_time)"
|
local atime="$(uci get gps.@gps[-1].adjust_time)"
|
||||||
|
local disabled="$(uci get gps.@gps[-1].disabled || echo 0)"
|
||||||
|
|
||||||
|
[ "$disabled" == "0" ] || return
|
||||||
|
|
||||||
[ -c "$tty" ] || {
|
[ -c "$tty" ] || {
|
||||||
tty="/dev/$tty"
|
tty="/dev/$tty"
|
||||||
|
Loading…
Reference in New Issue
Block a user