summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerve Jourdain <herve.jourdain@neuf.fr>2016-07-21 20:32:14 +0800
committerAndrei Gherzan <andrei@gherzan.ro>2016-09-21 16:51:23 +0100
commitbee7643b6c0ad596a7af9f49479c393fb8e682c3 (patch)
treec4a9544b64bad2de4d37ab5099d3501c0751540e
parent72b9635c66ccf334d9260e9313684d2f1c0edf35 (diff)
downloadmeta-raspberrypi-bee7643b6c0ad596a7af9f49479c393fb8e682c3.tar.gz
weston/weston_%.bbappend: modify configuration options to support vc4graphics
Signed-off-by: Herve Jourdain <herve.jourdain@neuf.fr>
-rw-r--r--recipes-graphics/weston/weston_%.bbappend13
1 files changed, 7 insertions, 6 deletions
diff --git a/recipes-graphics/weston/weston_%.bbappend b/recipes-graphics/weston/weston_%.bbappend
index 3ec311d..70f4360 100644
--- a/recipes-graphics/weston/weston_%.bbappend
+++ b/recipes-graphics/weston/weston_%.bbappend
@@ -1,7 +1,8 @@
1EXTRA_OECONF += "--enable-rpi-compositor \ 1PACKAGECONFIG_rpi_remove = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', ' fbdev', '', d)}"
2 --disable-resize-optimization \ 2EXTRA_OECONF += "--disable-xwayland-test \
3 --disable-setuid-install \ 3 --disable-simple-egl-clients \
4 --disable-xwayland-test \
5 --disable-simple-egl-clients \
6 WESTON_NATIVE_BACKEND=rpi-backend.so \
7" 4"
5EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', '--enable-rpi-compositor', d)}"
6EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', '--disable-resize-optimization', d)}"
7EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', '--disable-setuid-install', d)}"
8EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'WESTON_NATIVE_BACKEND=rpi-backend.so', d)}"