diff mbox

[RFC,16/37] package/efl: add frame buffer config option

Message ID 1437936947-17632-17-git-send-email-romain.naour@openwide.fr
State Changes Requested
Headers show

Commit Message

Romain Naour July 26, 2015, 6:55 p.m. UTC
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
 package/efl/Config.in | 5 +++++
 package/efl/efl.mk    | 6 ++++++
 2 files changed, 11 insertions(+)
diff mbox

Patch

diff --git a/package/efl/Config.in b/package/efl/Config.in
index ea607d7..4077565 100644
--- a/package/efl/Config.in
+++ b/package/efl/Config.in
@@ -37,6 +37,11 @@  config BR2_PACKAGE_EFL_RECOMMENDED_CONFIG
 	  otherwise we need to add a very long and obscure option
 	  to start the build.
 
+comment "libecore video support"
+
+config BR2_PACKAGE_EFL_FB
+	bool "libecore framebuffer support"
+
 comment "libevas loaders"
 
 config BR2_PACKAGE_EFL_PNG
diff --git a/package/efl/efl.mk b/package/efl/efl.mk
index 17a08fa..8f5c9fb 100644
--- a/package/efl/efl.mk
+++ b/package/efl/efl.mk
@@ -159,6 +159,12 @@  else
 EFL_CONF_OPTS += --enable-wayland=no
 endif
 
+ifeq ($(BR2_PACKAGE_EFL_FB),y)
+EFL_CONF_OPTS += --enable-fb=yes
+else
+EFL_CONF_OPTS += --enable-fb=no
+endif
+
 # image loader: handle only loaders that requires dependencies.
 # All other loaders are builded by default statically.
 ifeq ($(BR2_PACKAGE_EFL_PNG),y)