summaryrefslogtreecommitdiff
path: root/package/weston
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2016-03-29 11:39:01 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-03-30 16:58:06 +0200
commitda34e3e88b989b8fdd7079a29b799ba6d7b2496b (patch)
tree21dd2643d56a88006da8072c58a7b559f4a6e279 /package/weston
parentfd946f3e0b3758b813bc4d3319c7410bc87d9510 (diff)
weston: set default backend for fbdev
When it's enabled set the default weston backend to fbdev, otherwise the drm backend is the default even though we are not building it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/weston')
-rw-r--r--package/weston/weston.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/weston/weston.mk b/package/weston/weston.mk
index e7ad97e10..5af23dfab 100644
--- a/package/weston/weston.mk
+++ b/package/weston/weston.mk
@@ -49,7 +49,9 @@ WESTON_CONF_OPTS += --disable-rdp-compositor
endif
ifeq ($(BR2_PACKAGE_WESTON_FBDEV),y)
-WESTON_CONF_OPTS += --enable-fbdev-compositor
+WESTON_CONF_OPTS += \
+ --enable-fbdev-compositor \
+ WESTON_NATIVE_BACKEND=fbdev-backend.so
else
WESTON_CONF_OPTS += --disable-fbdev-compositor
endif