You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
374 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006-2011 OpenWrt.org
  3. START=65
  4. STOP=65
  5. USE_PROCD=1
  6. start_service() {
  7. # ln -sf /dev/ttyS0 /dev/gps0
  8. # /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
  9. mkdir -p /var/lib/ntp
  10. chown -R ntp:ntp /var/lib/ntp
  11. procd_open_instance
  12. procd_set_param command /sbin/ntpd -g -u ntp:ntp -p /var/run/ntpd.pid -n
  13. procd_close_instance
  14. }