Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
--- /dev/null
+#!/bin/sh
+
+DAEMON="/usr/libexec/iwd"
+PIDFILE="/var/run/iwd.pid"
+
+IWD_ARGS=""
+
+[ -r "/etc/default/iwd" ] && . "/etc/default/iwd"
+
+start() {
+ printf "Starting iwd:"
+ mkdir -p /tmp/iwd/hotspot
+ start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "$DAEMON" \
+ -- $IWD_ARGS
+ status=$?
+ if [ "$status" -eq 0 ]; then
+ echo "OK"
+ else
+ echo "FAIL"
+ fi
+ return "$status"
+}
+
+stop() {
+ printf "Stopping iwd:"
+ start-stop-daemon -K -q -p "$PIDFILE"
+ status=$?
+ if [ "$status" -eq 0 ]; then
+ echo "OK"
+ else
+ echo "FAIL"
+ fi
+ return "$status"
+}
+
+case "$1" in
+ start|stop)
+ "$1";;
+ *)
+ echo "Usage: $0 {start|stop}"
+ exit 1
+esac
IWD_POST_INSTALL_TARGET_HOOKS += IWD_INSTALL_CONFIG_FILE
+define IWD_INSTALL_INIT_SYSV
+ $(INSTALL) -m 0755 -D package/iwd/S40iwd \
+ $(TARGET_DIR)/etc/init.d/S40iwd
+ mkdir -p $(TARGET_DIR)/var/lib/iwd
+ ln -sf /tmp/iwd/hotspot $(TARGET_DIR)/var/lib/iwd/hotspot
+endef
+
$(eval $(autotools-package))