From 753c359e61994833f3900ebe74acdfba283dad08 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sun, 17 Nov 2013 12:07:46 +0900 Subject: [PATCH] ecore_fb - fix fb size get to use evas env vars for fb device this makes evas ane ecore_fb agree on how to address the fb device. this fixes terminology in fb on optimus (dual gpu) setups where you may have to declare the exact fb to use (there are 2 of them, not just fb0) and makes things consistent at least. this also should fix T253 --- src/lib/ecore_fb/ecore_fb.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore_fb/ecore_fb.c b/src/lib/ecore_fb/ecore_fb.c index ff96ac8a77..5e16f660c2 100644 --- a/src/lib/ecore_fb/ecore_fb.c +++ b/src/lib/ecore_fb/ecore_fb.c @@ -108,7 +108,14 @@ _ecore_fb_size_get(int *w, int *h) struct fb_var_screeninfo fb_var; int fb; - fb = open("/dev/fb0", O_RDWR); + if (getenv("EVAS_FB_DEV")) + fb = open(getenv("EVAS_FB_DEV"), O_RDWR); + else + { + fb = open("/dev/fb/0", O_RDWR); + if (fb == -1) + fb = open("/dev/fb0", O_RDWR); + } if (fb < 0) goto exit;