input-event-daemon: systemd support
Signed-off-by: Alex Suykov <alex.suykov@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
d27c0e13e8
commit
030fc25c92
@ -27,4 +27,12 @@ define INPUT_EVENT_DAEMON_INSTALL_INIT_SYSV
|
||||
$(TARGET_DIR)/etc/init.d/S99input-event-daemon
|
||||
endef
|
||||
|
||||
define INPUT_EVENT_DAEMON_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 644 package/input-event-daemon/input-event-daemon.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/input-event-daemon.service
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -sf /usr/lib/systemd/system/input-event-daemon.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/input-event-daemon.service
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
|
9
package/input-event-daemon/input-event-daemon.service
Normal file
9
package/input-event-daemon/input-event-daemon.service
Normal file
@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Input Event Daemon
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/input-event-daemon --no-daemon
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user