]> code.ossystems Code Review - openembedded-core.git/commitdiff
xserver-xf86-config: pre-load int10 and exa modules
authorKhem Raj <raj.khem@gmail.com>
Sat, 20 Aug 2016 20:36:09 +0000 (13:36 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 23 Aug 2016 16:44:19 +0000 (17:44 +0100)
musl doesn't like lazy loading that xorg uses, therefore
load the needed modules explicitly

[YOCTO #10169]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/conf/machine/qemux86-64.conf
meta/conf/machine/qemux86.conf
meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf

index 489194aa6e6b02a53fe059f17bc56e2fff633052..ac2c039ebf5677eb9195fd21fec37906866e8171 100644 (file)
@@ -22,7 +22,10 @@ XSERVER = "xserver-xorg \
            xf86-input-evdev \
            xf86-video-cirrus \
            xf86-video-fbdev \
-           xf86-video-vmware"
+           xf86-video-vmware \
+           xf86-video-modesetting \
+           xserver-xorg-module-libint10 \
+           "
 
 MACHINE_FEATURES += "x86"
 
index 3cc8091581cc244f43afda56e7f053c888af5197..5d22e52d2705eead6e3009593d97de3b311561da 100644 (file)
@@ -21,7 +21,10 @@ XSERVER = "xserver-xorg \
            xf86-input-evdev \
            xf86-video-cirrus \
            xf86-video-fbdev \
-           xf86-video-vmware"
+           xf86-video-vmware \
+           xf86-video-modesetting \
+           xserver-xorg-module-libint10 \
+           "
 
 MACHINE_FEATURES += "x86"
 
index 7ceb6fd63471ef68fa17156a2a0e288bd0bfaca3..72e4fbf59b0b663eae7d88e04ce8feacad38e51c 100644 (file)
@@ -3,7 +3,7 @@ Section "Module"
     Load "fb"
     Load "shadow"
     Load "shadowfb"
+    Load "int10"
     Load "vbe"
     Load "vgahw"
 EndSection
-