mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5081 311d38ba-8fff-0310-9ca6-ca027cbcb966
23 lines
434 B
BlitzBasic
23 lines
434 B
BlitzBasic
DESCRIPTION = "Simple Xserver Init Script (no dm)"
|
|
LICENSE = "GPL"
|
|
SECTION = "x11"
|
|
PRIORITY = "optional"
|
|
PR = "r17"
|
|
RDEPENDS = "dbus-wait"
|
|
|
|
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"
|
|
INITSCRIPT_PARAMS = "start 9 5 2 . stop 20 0 1 6 ."
|