stm-st-stm32mp: add cairo bbappend to support EGL

This commit adds a cairo bbappend from meta-st-openstlinux layer to add support
to EGL and libgles2 graphical libaries.

Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
Arturo Buzarra 2022-07-25 22:16:18 +02:00
parent 56bdbaded9
commit e6ab5ffd70
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
PACKAGECONFIG = " ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 xcb', '', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'egl glesv2', '', d)} \
"
do_install:append() {
install -d ${D}${bindir}/
install -m 0755 ${B}/util/cairo-trace/cairo-trace ${D}${bindir}/
}