mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-04-02 02:49:12 +00:00
* Weston 10 (Yocto Langdale) fails to build with userland drivers when the packageconfig options 'egl' or 'clients' are enabled, and those are enabled by default. So disable them by default when building with DISABLE_VC4GRAPHICS=1 Signed-off-by: Carlos Alberto Lopez Perez <clopez@igalia.com>
11 lines
367 B
Plaintext
11 lines
367 B
Plaintext
PACKAGECONFIG:remove:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'fbdev', 'egl clients', d)}"
|
|
|
|
EXTRA_OECONF:append:rpi = " \
|
|
--disable-xwayland-test \
|
|
--disable-simple-egl-clients \
|
|
${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' \
|
|
--disable-resize-optimization \
|
|
--disable-setuid-install \
|
|
', d)} \
|
|
"
|