7b9ac39afa
* fixes a few error that uClibc users were seeing * add switch to disable time adjustment Signed-off-by: John Crispin <john@phrozen.org>
24 lines
479 B
Bash
24 lines
479 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (c) 2014 OpenWrt.org
|
|
|
|
START=80
|
|
|
|
USE_PROCD=1
|
|
PROG=/usr/sbin/ugps
|
|
|
|
service_triggers() {
|
|
procd_add_reload_trigger gps
|
|
}
|
|
|
|
start_service() {
|
|
local tty="$(uci get gps.@gps[-1].tty)"
|
|
local atime="$(uci get gps.@gps[-1].adjust_time)"
|
|
|
|
[ -d "/sys/class/tty/$tty/" ] || return
|
|
|
|
procd_open_instance
|
|
procd_set_param command "$PROG" "/dev/$tty"
|
|
[ "$atime" -eq 0 ] || procd_append_param command "-a"
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|