summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp/conf
diff options
context:
space:
mode:
authorAlejandro Hernandez <alejandro.hernandez@linux.intel.com>2015-11-09 16:11:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-25 07:50:33 +0000
commitc4acacefc18d7cf9c25031c86c07097001c81da3 (patch)
tree7f9da19f8c0ea9550e5333570cd1916410ba0799 /meta-yocto-bsp/conf
parent6c3f68039d104e23f1267dedfec4aad3fb9fb3ae (diff)
downloadpoky-c4acacefc18d7cf9c25031c86c07097001c81da3.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 doesnt create an infinite loop executing itself everytime it wants to insert the module, busybox's modprobe doesn't provide this functionality, so a small hack had to be used to avoid the infite loop instead. (From meta-yocto rev: 70c143767a8b63921e668a62ac463b3a6b8c6132) Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp/conf')
-rw-r--r--meta-yocto-bsp/conf/machine/genericx86.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-yocto-bsp/conf/machine/genericx86.conf b/meta-yocto-bsp/conf/machine/genericx86.conf
index 2642caba54..798b62ec2b 100644
--- a/meta-yocto-bsp/conf/machine/genericx86.conf
+++ b/meta-yocto-bsp/conf/machine/genericx86.conf
@@ -6,3 +6,5 @@
6DEFAULTTUNE ?= "core2-32" 6DEFAULTTUNE ?= "core2-32"
7require conf/machine/include/tune-core2.inc 7require conf/machine/include/tune-core2.inc
8require conf/machine/include/genericx86-common.inc 8require conf/machine/include/genericx86-common.inc
9
10MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "gma500-gfx-check"