From 623594087f648e95b4b59770214bf7febda03d19 Mon Sep 17 00:00:00 2001 From: Tom Hochstein Date: Fri, 24 Apr 2020 17:22:11 -0500 Subject: [PATCH] xserver-xf86-config: Fix xorg.conf for 6ULL The 6ULL does not have a hardware-accelerated framebuffer device, so switch to the kernel framebuffer device. Signed-off-by: Tom Hochstein --- .../xserver-xf86-config/mx6ull/xorg.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 recipes-graphics/xorg-xserver/xserver-xf86-config/mx6ull/xorg.conf diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/mx6ull/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/mx6ull/xorg.conf new file mode 100644 index 00000000..79b6c0fc --- /dev/null +++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/mx6ull/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 -- 2.40.1