xdm: install startup script

install S99xdm to /etc/init.d to start XDM automatically

[Peter: Small cleanups]
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Yegor Yefremov 2011-10-10 11:22:00 +02:00 committed by Peter Korsgaard
parent bdb40d8bac
commit 72a6bd4b5d
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#!/bin/sh
XDM_BIN=/usr/bin/xdm
case "$1" in
start)
echo -n "Starting XDM: "
$XDM_BIN
echo "done"
;;
stop)
echo "Stopping XDM"
killall -q xdm
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
exit 0

View File

@ -12,4 +12,11 @@ XAPP_XDM_DEPENDENCIES = xapp_xinit xapp_sessreg xapp_xrdb xlib_libX11 xlib_libXa
XAPP_XDM_CONF_OPT = --with-utmp-file=/var/adm/utmpx \
--with-wtmp-file=/var/adm/wtmpx
define XAPP_XDM_INSTALL_STARTUP_SCRIPT
$(INSTALL) -m 0755 -D package/x11r7/xapp_xdm/S99xdm \
$(TARGET_DIR)/etc/init.d/S99xdm
endef
XAPP_XDM_POST_INSTALL_TARGET_HOOKS += XAPP_XDM_INSTALL_STARTUP_SCRIPT
$(eval $(call AUTOTARGETS))