diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2020-04-24 17:22:11 -0500 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-04-29 20:05:47 -0300 |
commit | 623594087f648e95b4b59770214bf7febda03d19 (patch) | |
tree | 1db447d5eb6e36b4178420a99a96f8bea713baca /recipes-graphics | |
parent | f5b350e2cb7ea5fbba9592815c8b5db4bcc52fe8 (diff) | |
download | meta-freescale-623594087f648e95b4b59770214bf7febda03d19.tar.gz |
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 <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-graphics')
-rw-r--r-- | recipes-graphics/xorg-xserver/xserver-xf86-config/mx6ull/xorg.conf | 12 |
1 files changed, 12 insertions, 0 deletions
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 @@ | |||
1 | Section "Device" | ||
2 | Identifier "Kernel Framebuffer Device" | ||
3 | Driver "fbdev" | ||
4 | Option "fbdev" "/dev/fb0" | ||
5 | EndSection | ||
6 | |||
7 | Section "ServerFlags" | ||
8 | Option "BlankTime" "0" | ||
9 | Option "StandbyTime" "0" | ||
10 | Option "SuspendTime" "0" | ||
11 | Option "OffTime" "0" | ||
12 | EndSection | ||