From 2b5525228720098259458c0921bcefe5b3501bd9 Mon Sep 17 00:00:00 2001 From: Alex Gonzalez Date: Thu, 9 Aug 2018 19:00:53 +0200 Subject: [PATCH] meta-digi-dey: xserver-xf86-config: Use fbdev device for mainline The meta-freescale layer assumes that when you define the use-mainline-bsp the platform is going to use the etnaviv gpu driver. This is not the case for the CC6UL as the mxsfb.c driver is still not DRM capable. Probably this will change in v4.19 as there is a DRM capable mxsfb.c driver that will make it possible to use the armada xf86 driver with the etnaviv fbdev emulation. Signed-off-by: Alex Gonzalez --- .../xserver-xf86-config/use-mainline-bsp/xorg.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 meta-digi-dey/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf diff --git a/meta-digi-dey/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf b/meta-digi-dey/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf new file mode 100644 index 000000000..79b6c0fc1 --- /dev/null +++ b/meta-digi-dey/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf @@ -0,0 +1,12 @@ +Section "Device" + Identifier "Kernel Framebuffer Device" + Driver "fbdev" + Option "fbdev" "/dev/fb0" +EndSection + +Section "ServerFlags" + Option "BlankTime" "0" + Option "StandbyTime" "0" + Option "SuspendTime" "0" + Option "OffTime" "0" +EndSection