diff options
author | Herve Jourdain <herve.jourdain@neuf.fr> | 2016-07-21 20:32:14 +0800 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2016-09-21 16:51:23 +0100 |
commit | bee7643b6c0ad596a7af9f49479c393fb8e682c3 (patch) | |
tree | c4a9544b64bad2de4d37ab5099d3501c0751540e | |
parent | 72b9635c66ccf334d9260e9313684d2f1c0edf35 (diff) | |
download | meta-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_%.bbappend | 13 |
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 @@ | |||
1 | EXTRA_OECONF += "--enable-rpi-compositor \ | 1 | PACKAGECONFIG_rpi_remove = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', ' fbdev', '', d)}" |
2 | --disable-resize-optimization \ | 2 | EXTRA_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 | " |
5 | EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', '--enable-rpi-compositor', d)}" | ||
6 | EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', '--disable-resize-optimization', d)}" | ||
7 | EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', '--disable-setuid-install', d)}" | ||
8 | EXTRA_OECONF += "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'WESTON_NATIVE_BACKEND=rpi-backend.so', d)}" | ||