aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xserver-kdrive-common/xserver-nodm-init.bb
blob: 01bdd5559c66ddb632c65d508fcfb0011c9b7d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
DESCRIPTION = "Simple Xserver Init Script (no dm)"
LICENSE = "GPL"
SECTION = "x11"
PRIORITY = "optional"
PR = "r11"
RDEPENDS_${PN} = "procps"

SRC_URI = "file://xserver-nodm"
S = ${WORKDIR}

PACKAGE_ARCH = "all"

do_install() {
    install -d ${D}/etc
    install -d ${D}/etc/init.d
    install xserver-nodm ${D}/etc/init.d
}    

inherit update-rc.d

INITSCRIPT_NAME = "xserver-nodm"
# start earlier under the assumption that xserver takes seconds to start
INITSCRIPT_PARAMS = "start 5 5 2 . stop 20 0 1 6 ."

pkg_postinst_${PN} () {
if test "x$D" = "x"; then
	for f in `ls /etc/rc?.d/S99${INITSCRIPT_NAME} 2>/dev/null`; do
		mv $f `dirname $f`/S05${INITSCRIPT_NAME}
	done
fi
}