summaryrefslogtreecommitdiffstats
path: root/conf/machine/intel-core2-32.conf
diff options
context:
space:
mode:
authorAlejandro Hernandez <alejandro.hernandez@linux.intel.com>2016-02-18 21:52:01 +0000
committerSaul Wold <sgw@linux.intel.com>2016-02-19 07:52:09 -0800
commit324918de4639be380cef04bdcfdb8bbdb4c221d5 (patch)
treec779917dad935b979e7e2ab3a7223effaf5e6f0e /conf/machine/intel-core2-32.conf
parent5640cd6bc13a520ba4bf73c94fe9b739ac23c7e6 (diff)
downloadmeta-intel-324918de4639be380cef04bdcfdb8bbdb4c221d5.tar.gz
gma500_gfx: Avoid inserting gma500_gfx module for certain devices
The gma500_gfx driver will match certain devices on which it causes incorrect functionality, we want to avoid inserting this module, basicallly blacklist it for specific hardware, but still allow it to work on other hardware by default; usually when we have an already working system, using udev rules would do the job, but since we are building it, it is impossible to blacklist a driver when a certain udev rule matches, since rootfs isn't writeable at this point during boot time, the solution is to use modprobe install, which runs a certain command instead of inserting a matching module this command needs to insert the module manually afterwards and have a flag --ignore-install so it doesn't create an infinite loop executing itself everytime it wants to insert the module, busybox's modprobe doesnt provide this functionality, so a small hack had to be used to avoid the infite loop instead. Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'conf/machine/intel-core2-32.conf')
-rw-r--r--conf/machine/intel-core2-32.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/machine/intel-core2-32.conf b/conf/machine/intel-core2-32.conf
index 5c870d94..039528c3 100644
--- a/conf/machine/intel-core2-32.conf
+++ b/conf/machine/intel-core2-32.conf
@@ -19,6 +19,8 @@ MACHINE_HWCODECS ?= "va-intel gstreamer-vaapi-1.0"
19 19
20MACHINE_EXTRA_RRECOMMENDS += "linux-firmware" 20MACHINE_EXTRA_RRECOMMENDS += "linux-firmware"
21 21
22MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "gma500-gfx-check"
23
22XSERVER ?= "${XSERVER_X86_BASE} \ 24XSERVER ?= "${XSERVER_X86_BASE} \
23 ${XSERVER_X86_EXT} \ 25 ${XSERVER_X86_EXT} \
24 ${XSERVER_X86_FBDEV} \ 26 ${XSERVER_X86_FBDEV} \