diff options
author | Daniel Golle <daniel@makrotopia.org> | 2021-05-27 12:34:38 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2021-06-15 12:16:10 +0100 |
commit | 072d0afb8fa6359541568081c23fe2d8d411651c (patch) | |
tree | 4e9e58788b486fda1f24c82242227db9c49d1d8e | |
parent | 25c75424e7b51a60dd7a06336257232173619e2c (diff) | |
download | upstream-072d0afb8fa6359541568081c23fe2d8d411651c.tar.gz upstream-072d0afb8fa6359541568081c23fe2d8d411651c.tar.bz2 upstream-072d0afb8fa6359541568081c23fe2d8d411651c.zip |
ugps: start also in case device is absent
Don't bail out from init script in case the GPS device is missing.
Some modems take time to come up, and some people may use things like
'kplex' to feed ugpsd. Hence it is better to always start ugpsd
unconditionally and let procd's respawn take care of retrying.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 3d026d24257a0e2f3170538d8a54d520315699a1)
-rw-r--r-- | package/utils/ugps/files/ugps.init | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/package/utils/ugps/files/ugps.init b/package/utils/ugps/files/ugps.init index 3cd1ca1b8d..77c3603066 100644 --- a/package/utils/ugps/files/ugps.init +++ b/package/utils/ugps/files/ugps.init @@ -16,11 +16,16 @@ start_service() { local disabled="$(uci get gps.@gps[-1].disabled || echo 0)" [ "$disabled" == "0" ] || return + [ "$tty" ] || return - [ -c "$tty" ] || { - tty="/dev/$tty" - [ -c "$tty" ] || return - } + case "$tty" in + "/"*) + true + ;; + *) + tty="/dev/$tty" + ;; + esac procd_open_instance procd_set_param command "$PROG" |