neard: add init script

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Simon Dawson 2013-05-26 23:16:55 +00:00 committed by Peter Korsgaard
parent 37f6ecd4d0
commit a94650c184
2 changed files with 42 additions and 0 deletions

33
package/neard/S53neard Executable file
View File

@ -0,0 +1,33 @@
#!/bin/sh
#
# Starts neard
#
NAME=neard
DAEMON=/usr/libexec/nfc/$NAME
# Exit gracefully if the package has been removed
[ -x $DAEMON ] || exit 0
case "$1" in
start)
echo -n "Starting $NAME: "
start-stop-daemon -S -q -p /var/run/${NAME}.pid -x $DAEMON -- -d '*'
echo "OK"
;;
stop)
echo -n "Stopping $NAME: "
start-stop-daemon -K -q -p /var/run/${NAME}.pid
echo "OK"
;;
restart|reload)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?

View File

@ -17,4 +17,13 @@ ifeq ($(BR2_PACKAGE_NEARD_TOOLS),y)
NEARD_CONF_OPT += --enable-tools
endif
define NEARD_INSTALL_INIT_SYSV
$(INSTALL) -D -m 0755 package/neard/S53neard \
$(TARGET_DIR)/etc/init.d/S53neard
endef
define NEARD_UNINSTALL_INIT_SYSV
$(RM) $(TARGET_DIR)/etc/init.d/S53neard
endef
$(eval $(autotools-package))