Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
PACKAGECONFIG_GL:rpi = "${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'gl', \
|
||||
bb.utils.contains('DISTRO_FEATURES', 'opengl', 'eglfs gles2', \
|
||||
'', d), d)}"
|
||||
PACKAGECONFIG_GL:append:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', ' kms', '', d)}"
|
||||
PACKAGECONFIG_GL:append:rpi = " gbm"
|
||||
PACKAGECONFIG_FONTS:rpi = "fontconfig"
|
||||
PACKAGECONFIG:append:rpi = " libinput examples tslib xkbcommon"
|
||||
PACKAGECONFIG:remove:rpi = "tests"
|
||||
|
||||
OE_QTBASE_EGLFS_DEVICE_INTEGRATION:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'eglfs_brcm', d)}"
|
||||
|
||||
do_configure:prepend:rpi() {
|
||||
# Add the appropriate EGLFS_DEVICE_INTEGRATION
|
||||
if [ "${@d.getVar('OE_QTBASE_EGLFS_DEVICE_INTEGRATION')}" != "" ]; then
|
||||
echo "EGLFS_DEVICE_INTEGRATION = ${OE_QTBASE_EGLFS_DEVICE_INTEGRATION}" >> ${S}/mkspecs/oe-device-extra.pri
|
||||
fi
|
||||
}
|
||||
RDEPENDS:${PN}:append:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}"
|
||||
DEPENDS:append:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}"
|
||||
Reference in New Issue
Block a user