mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59:03 +02:00
mesa-demos,piglit,packagegroup-core-tools-testapps: Remove dependency on mesa-demos
mesa-demos demand libgles1 and userland driver does not have it, therefore make it conditional on choice of graphics driver, remove it when using userland driver and keep it when using vc4 graphics driver. Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
52255ae3af
commit
a0beccee73
|
@ -0,0 +1,2 @@
|
|||
# mesa-demos needs gles1 and userland driver does not have it, works ok with vc4 graphics driver
|
||||
X11GLTOOLS_remove_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'mesa-demos', d)}"
|
|
@ -1,2 +1,2 @@
|
|||
EGLINFO_DEVICE_rpi = "raspberrypi"
|
||||
COMPATIBLE_HOST_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'null', '"(.*)"', d)}"
|
||||
COMPATIBLE_HOST_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', 'null', '(.*)', d)}"
|
||||
|
|
2
recipes-graphics/mesa/mesa-demos_%.bbappend
Normal file
2
recipes-graphics/mesa/mesa-demos_%.bbappend
Normal file
|
@ -0,0 +1,2 @@
|
|||
# mesa-demos need libgles1 and userland driver does not have it
|
||||
COMPATIBLE_HOST_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '(.*)', 'null', d)}"
|
2
recipes-graphics/piglit/piglit_%.bbappend
Normal file
2
recipes-graphics/piglit/piglit_%.bbappend
Normal file
|
@ -0,0 +1,2 @@
|
|||
# mesa-demos need libgles1 and userland driver does not have it so remove it from piglit rdeps
|
||||
RDEPENDS_${PN}_remove_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'mesa-demos', d)}"
|
Loading…
Reference in New Issue
Block a user