diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2015-11-23 10:36:19 -0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-04-19 15:03:22 -0300 |
commit | 8000b6bc67857e17596001622b547f9099a98224 (patch) | |
tree | d8ac58ec824da8dfc48868b35eaa0f9622f86837 | |
parent | fce92b578a5e007e79629aa9bc5510549faf65b6 (diff) | |
download | meta-freescale-8000b6bc67857e17596001622b547f9099a98224.tar.gz |
kernel-module-imx-gpu-viv: Add 'galcore' to module autoloading
The module autoloading ensures 'galcore' to be probed as early as
possible during the boot. The order is important so the GPU can be
used as fast as possible, ensuring a reduced time until the initial
GPU-based application is loaded.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv_5.0.11.p7.1+fslc.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv_5.0.11.p7.1+fslc.bb b/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv_5.0.11.p7.1+fslc.bb index 404615ff1..0504cfa72 100644 --- a/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv_5.0.11.p7.1+fslc.bb +++ b/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv_5.0.11.p7.1+fslc.bb | |||
@@ -9,9 +9,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" | |||
9 | 9 | ||
10 | PV .= "+git${SRCPV}" | 10 | PV .= "+git${SRCPV}" |
11 | 11 | ||
12 | inherit module | ||
13 | |||
14 | SRCREV = "eeeb23c0fb1cee01318088d417025263479c44ac" | 12 | SRCREV = "eeeb23c0fb1cee01318088d417025263479c44ac" |
15 | SRC_URI = "git://github.com/Freescale/kernel-module-imx-gpu-viv.git;protocol=https" | 13 | SRC_URI = "git://github.com/Freescale/kernel-module-imx-gpu-viv.git;protocol=https" |
16 | 14 | ||
17 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | |||
17 | inherit module | ||
18 | |||
19 | KERNEL_MODULE_AUTOLOAD = "galcore" | ||