summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp/recipes-bsp/gma500-gfx-check
AgeCommit message (Collapse)Author
2023-06-20genericx86: Drop gma500-gfx-checkRichard Purdie
Drop the gma500-gfx-check script. This hardware is ancient and times have moved on, stop carrying around this old compatibility script. (From meta-yocto rev: fa57b62988010a398b0defa89c9e831d75618d14) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-03-01gma500-gfx-check: Update LICENSE to use an SPDX license identifierPeter Kjellerstedt
(From meta-yocto rev: 7408fc695b4f70c351611c1dbd41ba6fb3ff539b) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-07-29meta-poky/meta-yocto-bsp: Convert to new override syntaxRichard Purdie
This converts the two layers to the new override syntax. This was done using <oe-core>/scripts/contrib/convert-overrides.py <this-layer> with no manual fixes. (From meta-yocto rev: 387eab70f343966267c2a68746aea1bbb8525191) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-02-21gma500-gfx-check: Update licence to match changes in OE-CoreRichard Purdie
Match SPDX licence name changes in OE-Core. (From meta-yocto rev: 4acb5d2a9e77b8f426fa2370a9a71b9df8c7c3e7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2016-02-18gma500-gfx-check: Fixes infinite calling to modprobe gma500_gfxAlejandro Hernandez
The previous script caused an infinite call to modprobe gma500_gfx on certain situations, this fixes a typo and uses a new flag to avoid the infinite loop (From meta-yocto rev: 9a341596fd0cdf892e125b2eead7b5e334a590b4) Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2015-11-25gma500_gfx: Avoid inserting gma500_gfx module for certain devicesAlejandro Hernandez
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>