32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
# OpenGL is not required for parts with GPU support for 2D but not 3D
|
|
IMX_REQUIRED_DISTRO_FEATURES_REMOVE = ""
|
|
IMX_REQUIRED_DISTRO_FEATURES_REMOVE_imxgpu2d = "opengl"
|
|
IMX_REQUIRED_DISTRO_FEATURES_REMOVE_imxgpu3d = ""
|
|
REQUIRED_DISTRO_FEATURES_remove = "${IMX_REQUIRED_DISTRO_FEATURES_REMOVE}"
|
|
|
|
SRC_URI_append_mx6sl = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd wayland x11', 'file://weston.config', '', d)}"
|
|
|
|
HAS_SYSTEMD = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}"
|
|
|
|
do_install_append() {
|
|
if ${HAS_SYSTEMD}; then
|
|
sed -i \
|
|
-e 's,/usr/bin,${bindir},g' \
|
|
-e 's,/etc,${sysconfdir},g' \
|
|
-e 's,/var,${localstatedir},g' \
|
|
${D}${systemd_system_unitdir}/weston.service
|
|
fi
|
|
if [ -f ${WORKDIR}/weston.config ]; then
|
|
install -Dm0755 ${WORKDIR}/weston.config ${D}${sysconfdir}/default/weston
|
|
fi
|
|
}
|
|
|
|
# Add profile support not accepted by upstream
|
|
SRC_URI += "file://profile"
|
|
|
|
do_install_append() {
|
|
install -Dm0755 ${WORKDIR}/profile ${D}${sysconfdir}/profile.d/weston.sh
|
|
}
|