xserver-xf86-config: Preload graphics driver modules for musl

musl does not support BIND_LAZY intentionally, which means
dlopen will always complain about missing symbols which is what
X does when loading graphics drivers, here we preload the needed
drivers for all emulator machines if libc is musl

Change-Id: I908c94c30db8a5e872922e1a677126d82fa17145
(From OE-Core rev: 92be71296e1b7ed1e6387ae381942072aa3bb4f3)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj
2015-04-10 18:20:45 -07:00
committed by Richard Purdie
parent 40db5c4baa
commit 4fb58a4585
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
Section "Module"
Load "fbdevhw"
Load "fb"
Load "shadow"
Load "shadowfb"
Load "vbe"
Load "vgahw"
EndSection

View File

@@ -7,9 +7,14 @@ PR = "r33"
SRC_URI = "file://xorg.conf"
SRC_URI_append_libc-musl = "\
file://10-preload-modules.conf \
"
S = "${WORKDIR}"
CONFFILES_${PN} = "${sysconfdir}/X11/xorg.conf"
CONFFILES_${PN}_append_libc-musl = " ${sysconfdir}/X11/xorg.conf.d/10-preload-modules.conf"
PACKAGE_ARCH = "${MACHINE_ARCH}"
ALLOW_EMPTY_${PN} = "1"
@@ -20,3 +25,7 @@ do_install () {
install -m 0644 ${WORKDIR}/xorg.conf ${D}/${sysconfdir}/X11/
fi
}
do_install_append_libc-musl () {
install -Dm 0644 ${WORKDIR}/10-preload-modules.conf ${D}/${sysconfdir}/X11/xorg.conf.d/10-preload-modules.conf
}