From be5b0af7fa7fa341363e0ccfe0c7f8a85213d37f Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Wed, 29 May 2019 20:05:35 +0200 Subject: wayland-app-launch: add a simple systemd service This tries to start a wayland application after weston got started. Create a copy of wayland-terminal-launch_1.0.bb with the variables changed according to your needs. Signed-off-by: Max Krummenacher --- .../wayland-app-launch/wayland-app-launch.inc | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes-graphics/wayland-app-launch/wayland-app-launch.inc (limited to 'recipes-graphics/wayland-app-launch/wayland-app-launch.inc') diff --git a/recipes-graphics/wayland-app-launch/wayland-app-launch.inc b/recipes-graphics/wayland-app-launch/wayland-app-launch.inc new file mode 100644 index 0000000..20a6c25 --- /dev/null +++ b/recipes-graphics/wayland-app-launch/wayland-app-launch.inc @@ -0,0 +1,29 @@ +SUMMARY = "Wayland application autostart" +DESCRIPTION = "This will start a wayland application after the wayland socket has been created." +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" + +inherit allarch systemd + +RDEPENDS_${PN} += "weston-init ${INITIAL_APP_PKGS}" + +S = "${WORKDIR}" + +SRC_URI = " \ + file://wayland-app-launch.service \ + file://wayland-app-launch.sh.in \ +" +FILESEXTRAPATHS_prepend := "${THISDIR}/wayland-app-launch:" + +do_compile () { + sed -e "s:@@wayland-application@@:${WAYLAND_APPLICATION}:" wayland-app-launch.sh.in > wayland-app-launch.sh +} + +do_install () { + install -d ${D}/${bindir} ${D}${systemd_unitdir}/system/ + install -m 0644 ${WORKDIR}/wayland-app-launch.service ${D}${systemd_unitdir}/system + install -m 0755 ${S}/wayland-app-launch.sh ${D}/${bindir} +} + +SYSTEMD_PACKAGES = "${PN}" +SYSTEMD_SERVICE_${PN} = "wayland-app-launch.service" -- cgit v1.2.3