diff options
author | Luca Ceresoli <luca.ceresoli@bootlin.com> | 2022-08-24 18:58:54 +0200 |
---|---|---|
committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-08-24 21:07:10 +0000 |
commit | cddd28b1afe5e37c10e9a5e8a3c02b23083efa35 (patch) | |
tree | a3ea2d06b2d57ae8f6697ed818ac5bf253e30bb6 /recipes-kernel/kernel-modules | |
parent | 610acff11fcac1f97ee71e05099153ad1cbbe6f8 (diff) | |
download | meta-freescale-cddd28b1afe5e37c10e9a5e8a3c02b23083efa35.tar.gz |
kernel-module-isp-vvcam: fix LIC_FILES_CHKSUM when using devtool
This recipe fails when using devtool:
ERROR: [...] do_populate_lic: QA Issue: kernel-module-isp-vvcam: LIC_FILES_CHKSUM points to an invalid file: [...]/build/tmp/work/nitrogen8mp-fslc-linux/kernel-module-isp-vvcam/4.2.2.16.0-r0/git/vvcam/LICENSE [license-checksum]
How to reproduce:
devtool modify kernel-module-isp-vvcam
bitbake kernel-module-isp-vvcam
Fix by pointing to a path relative to S.
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit c1cb76721b333c3b5f1ee8f9e5e84a4fad8b1bf1)
Diffstat (limited to 'recipes-kernel/kernel-modules')
-rw-r--r-- | recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.16.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.16.0.bb b/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.16.0.bb index d5862222..c5356495 100644 --- a/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.16.0.bb +++ b/recipes-kernel/kernel-modules/kernel-module-isp-vvcam_4.2.2.16.0.bb | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | DESCRIPTION = "Kernel loadable module for ISP" | 3 | DESCRIPTION = "Kernel loadable module for ISP" |
4 | LICENSE = "GPL-2.0-only" | 4 | LICENSE = "GPL-2.0-only" |
5 | LIC_FILES_CHKSUM = "file://${WORKDIR}/git/vvcam/LICENSE;md5=64381a6ea83b48c39fe524c85f65fb44" | 5 | LIC_FILES_CHKSUM = "file://${S}/../LICENSE;md5=64381a6ea83b48c39fe524c85f65fb44" |
6 | 6 | ||
7 | SRCBRANCH = "lf-5.10.y_2.2.0" | 7 | SRCBRANCH = "lf-5.10.y_2.2.0" |
8 | ISP_KERNEL_SRC ?= "git://source.codeaurora.org/external/imx/isp-vvcam.git;protocol=https;branch=master" | 8 | ISP_KERNEL_SRC ?= "git://source.codeaurora.org/external/imx/isp-vvcam.git;protocol=https;branch=master" |