From eba825e4698f6923c32c347eb306abe9d7f3519d Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 27 Mar 2013 17:50:42 +0000 Subject: weston-init: basic init script to start Weston on KMS/DRM weston-init is a very basic init script to start Weston as root on KMS/DRM. To re-iterate, this runs Weston as root. This will be fixed to use weston-launch shortly. Signed-off-by: Ross Burton Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-graphics/wayland/weston-init.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta/recipes-graphics/wayland/weston-init.bb (limited to 'meta/recipes-graphics/wayland/weston-init.bb') diff --git a/meta/recipes-graphics/wayland/weston-init.bb b/meta/recipes-graphics/wayland/weston-init.bb new file mode 100644 index 0000000000..a3fe811f4d --- /dev/null +++ b/meta/recipes-graphics/wayland/weston-init.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "startup for weston" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" + +SRC_URI = "file://init" + +S = "${WORKDIR}" + +do_install() { + install -d ${D}/${sysconfdir}/init.d + install -m755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/weston +} + +inherit allarch update-rc.d + +INITSCRIPT_NAME = "weston" +INITSCRIPT_PARAMS = "start 9 5 2 . stop 20 0 1 6 ." -- cgit 1.2.3-korg