summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-09-09 10:43:50 -0300
committerGitHub <noreply@github.com>2026-09-09 10:43:50 -0300
commite93a447e8353416571c7592f6e5ca32004afbf53 (patch)
tree311140f2f5bcb451015301d360edd809eeda42bc
parent7aa40fe036b83ee457d1a0cfab7f0b3af714b24c (diff)
parent1bd0bc3d4e70af65905196963f933ea074c415ed (diff)
downloadmeta-freescale-e93a447e8353416571c7592f6e5ca32004afbf53.tar.gz
Merge pull request #2680 from lucianogdittgen/oelint-vars-specific-2
jailhouse-imx: Fix kernel module package name in INSANE_SKIP
-rw-r--r--recipes-extended/jailhouse/jailhouse-imx_git.bb14
1 files changed, 3 insertions, 11 deletions
diff --git a/recipes-extended/jailhouse/jailhouse-imx_git.bb b/recipes-extended/jailhouse/jailhouse-imx_git.bb
index 2b3094cc1..c7bc8c72b 100644
--- a/recipes-extended/jailhouse/jailhouse-imx_git.bb
+++ b/recipes-extended/jailhouse/jailhouse-imx_git.bb
@@ -117,18 +117,10 @@ INSANE_SKIP:${PN} = "ldflags buildpaths"
117# nooelint: oelint.vars.insaneskip 117# nooelint: oelint.vars.insaneskip
118INSANE_SKIP:${PN}-dbg = "buildpaths" 118INSANE_SKIP:${PN}-dbg = "buildpaths"
119 119
120# The QA error in package kernel-module-${KERNEL_VERSION} cannot be skipped with 120# Scope this to the recipe's own module: "^kernel-module-.*" would make
121# INSANE_SKIP, so adjust at the ERROR_QA level 121# jailhouse-imx a provider for every kernel-module-* virtual, ahead of linux-imx.
122ERROR_QA:remove = "buildpaths"
123# kernel-module-${KERNEL_VERSION} is generated by the kernel-module-split class
124# (inherit module, above); declare it so its INSANE_SKIP is recognised by
125# standalone lint. Scope the pattern to this recipe's own module only: a broad
126# "^kernel-module-.*" makes jailhouse-imx a candidate provider for every
127# kernel-module-* virtual (e.g. iptables' RRECOMMENDS kernel-module-x-tables),
128# and since providers are sorted alphabetically it is picked ahead of linux-imx,
129# pulling jailhouse-imx into the task graph of unrelated recipes.
130PACKAGES_DYNAMIC += "^kernel-module-jailhouse.*" 122PACKAGES_DYNAMIC += "^kernel-module-jailhouse.*"
131# nooelint: oelint.vars.insaneskip 123# nooelint: oelint.vars.insaneskip
132INSANE_SKIP:kernel-module-${KERNEL_VERSION} = "buildpaths" 124INSANE_SKIP:kernel-module-jailhouse-${KERNEL_VERSION} = "buildpaths"
133 125
134COMPATIBLE_MACHINE = "(mx8m-nxp-bsp|mx8ulp-nxp-bsp|mx9-nxp-bsp)" 126COMPATIBLE_MACHINE = "(mx8m-nxp-bsp|mx8ulp-nxp-bsp|mx9-nxp-bsp)"