diff options
author | Gary Bisson <gary.bisson@boundarydevices.com> | 2018-09-12 21:54:36 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2018-09-12 18:29:48 -0300 |
commit | 501b840982a51311feef3efdfa548ca2efcf4a31 (patch) | |
tree | d2eee51d4c8c2b912018a36511a1adf7c3260ae8 /recipes-graphics | |
parent | 68cadfdbcf5e4c2c30d396a61dbe3d1eaa40deac (diff) | |
download | meta-freescale-501b840982a51311feef3efdfa548ca2efcf4a31.tar.gz |
weston: install weston.ini to disable idle timeout
In order to get the same behavior as meta-fsl-bsp-release (see
weston_4.0.0.bbappend).
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics')
-rw-r--r-- | recipes-graphics/wayland/weston_4.0.0.imx.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-graphics/wayland/weston_4.0.0.imx.bb b/recipes-graphics/wayland/weston_4.0.0.imx.bb index 7a2aab60..372a0be3 100644 --- a/recipes-graphics/wayland/weston_4.0.0.imx.bb +++ b/recipes-graphics/wayland/weston_4.0.0.imx.bb | |||
@@ -109,12 +109,16 @@ do_install_append() { | |||
109 | if [ "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', 'yes', 'no', d)}" = "yes" ]; then | 109 | if [ "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', 'yes', 'no', d)}" = "yes" ]; then |
110 | install -Dm 644 ${WORKDIR}/xwayland.weston-start ${D}${datadir}/weston-start/xwayland | 110 | install -Dm 644 ${WORKDIR}/xwayland.weston-start ${D}${datadir}/weston-start/xwayland |
111 | fi | 111 | fi |
112 | |||
113 | # install default weston.ini | ||
114 | install -d ${D}${sysconfdir}/xdg/weston | ||
115 | install -m 0644 ${B}/weston.ini ${D}${sysconfdir}/xdg/weston | ||
112 | } | 116 | } |
113 | 117 | ||
114 | PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', '${PN}-xwayland', '', d)} \ | 118 | PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', '${PN}-xwayland', '', d)} \ |
115 | libweston-${WESTON_MAJOR_VERSION} ${PN}-examples" | 119 | libweston-${WESTON_MAJOR_VERSION} ${PN}-examples" |
116 | 120 | ||
117 | FILES_${PN} = "${bindir}/weston ${bindir}/weston-terminal ${bindir}/weston-info ${bindir}/weston-launch ${bindir}/wcap-decode ${libexecdir} ${libdir}/${BPN}/*.so ${datadir}" | 121 | FILES_${PN} = "${bindir}/weston ${bindir}/weston-terminal ${bindir}/weston-info ${bindir}/weston-launch ${bindir}/wcap-decode ${libexecdir} ${libdir}/${BPN}/*.so ${datadir} ${sysconfdir}/xdg/weston" |
118 | 122 | ||
119 | FILES_libweston-${WESTON_MAJOR_VERSION} = "${libdir}/lib*${SOLIBS} ${libdir}/libweston-${WESTON_MAJOR_VERSION}/*.so" | 123 | FILES_libweston-${WESTON_MAJOR_VERSION} = "${libdir}/lib*${SOLIBS} ${libdir}/libweston-${WESTON_MAJOR_VERSION}/*.so" |
120 | SUMMARY_libweston-${WESTON_MAJOR_VERSION} = "Helper library for implementing 'wayland window managers'." | 124 | SUMMARY_libweston-${WESTON_MAJOR_VERSION} = "Helper library for implementing 'wayland window managers'." |