14 lines
212 B
Plaintext
14 lines
212 B
Plaintext
![]() |
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
|
START=60
|
||
|
start() {
|
||
|
# ln -sf /dev/ttyS0 /dev/gps0
|
||
|
# /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
|
||
|
/usr/sbin/ntpd -g
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall ntpd
|
||
|
}
|