2010-02-28 16:31:04 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-09 23:43:39 +00:00
|
|
|
# Copyright (C) 2011 OpenWrt.org
|
2010-02-28 16:31:04 +00:00
|
|
|
|
|
|
|
START=50
|
|
|
|
|
|
|
|
start() {
|
2011-11-09 23:43:39 +00:00
|
|
|
service_start /usr/sbin/ptpd
|
2010-02-28 16:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-09 23:43:39 +00:00
|
|
|
service_stop /usr/sbin/ptpd
|
2010-02-28 16:31:04 +00:00
|
|
|
}
|