diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2016-05-18 13:40:43 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-21 22:21:30 +0100 |
commit | 1963dfb002b9e0b4bff02dbf783909102ca59719 (patch) | |
tree | 847173727e398786c5944111bb1bf422cef9690a /meta/recipes-graphics/wayland/weston-init.bb | |
parent | 9d745d7c958402fa1d59c9d0267b58a05d7ee4b3 (diff) | |
download | openembedded-core-1963dfb002b9e0b4bff02dbf783909102ca59719.tar.gz openembedded-core-1963dfb002b9e0b4bff02dbf783909102ca59719.tar.bz2 openembedded-core-1963dfb002b9e0b4bff02dbf783909102ca59719.zip |
weston-init: Rework init sequence to avoid code duplication
The new 'weston-start' script redcues the code duplication for SysV
and SystemD based images.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics/wayland/weston-init.bb')
-rw-r--r-- | meta/recipes-graphics/wayland/weston-init.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init.bb b/meta/recipes-graphics/wayland/weston-init.bb index 4ad62cff2d..3a2251e69a 100644 --- a/meta/recipes-graphics/wayland/weston-init.bb +++ b/meta/recipes-graphics/wayland/weston-init.bb @@ -3,13 +3,15 @@ LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690" SRC_URI = "file://init \ - file://weston.service" + file://weston.service \ + file://weston-start" S = "${WORKDIR}" do_install() { install -Dm755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/weston install -Dm0644 ${WORKDIR}/weston.service ${D}${systemd_system_unitdir}/weston.service + install -Dm755 ${WORKDIR}/weston-start ${D}${bindir}/weston-start } inherit allarch update-rc.d distro_features_check systemd |