mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@405 311d38ba-8fff-0310-9ca6-ca027cbcb966
22 lines
411 B
BlitzBasic
22 lines
411 B
BlitzBasic
DESCRIPTION = "Simple Xserver Init Script (no dm)"
|
|
LICENSE = "GPL"
|
|
SECTION = "x11"
|
|
PRIORITY = "optional"
|
|
PR = "r2"
|
|
|
|
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 99 5 2 . stop 20 0 1 6 ."
|