diff mbox series

[meta-ti,master] meta-beagle: linux: Add INSANE_SKIP debug-deps

Message ID 20250610210836.16917-1-reatmon@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [meta-ti,master] meta-beagle: linux: Add INSANE_SKIP debug-deps | expand

Commit Message

Ryan Eatmon June 10, 2025, 9:08 p.m. UTC
We are seeing an error related to a check from oe-core wanting to make
sure that a package does not RDEPEND on a debug package.

ERROR: linux-bb.org-6.12.22+git-r0 do_package_qa: QA Issue: kernel-modules rdepends on kernel-module-g-dbgp-6.12.22-ti [debug-deps]

A bug has been filed:

https://bugzilla.yoctoproject.org/show_bug.cgi?id=15901

In the meantime, add debug-deps to the INSANE_SKIP list.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 meta-beagle/recipes-kernel/linux/linux-bb.org_6.1.bb  | 2 ++
 meta-beagle/recipes-kernel/linux/linux-bb.org_6.12.bb | 2 ++
 meta-beagle/recipes-kernel/linux/linux-bb.org_6.6.bb  | 2 ++
 3 files changed, 6 insertions(+)
diff mbox series

Patch

diff --git a/meta-beagle/recipes-kernel/linux/linux-bb.org_6.1.bb b/meta-beagle/recipes-kernel/linux/linux-bb.org_6.1.bb
index ceb9787e..805c3a84 100644
--- a/meta-beagle/recipes-kernel/linux/linux-bb.org_6.1.bb
+++ b/meta-beagle/recipes-kernel/linux/linux-bb.org_6.1.bb
@@ -66,3 +66,5 @@  PV:aarch64 = "6.1.83+git"
 BRANCH:aarch64 = "v6.1.83-ti-arm64-r64"
 
 KERNEL_GIT_URI = "git://github.com/beagleboard/linux.git"
+
+INSANE_SKIP:kernel-modules += "debug-deps"
diff --git a/meta-beagle/recipes-kernel/linux/linux-bb.org_6.12.bb b/meta-beagle/recipes-kernel/linux/linux-bb.org_6.12.bb
index 57f7d983..e3521505 100644
--- a/meta-beagle/recipes-kernel/linux/linux-bb.org_6.12.bb
+++ b/meta-beagle/recipes-kernel/linux/linux-bb.org_6.12.bb
@@ -66,3 +66,5 @@  PV:aarch64 = "6.12.22+git"
 BRANCH:aarch64 = "v6.12.22-ti-arm64-r35"
 
 KERNEL_GIT_URI = "git://github.com/beagleboard/linux.git"
+
+INSANE_SKIP:kernel-modules += "debug-deps"
diff --git a/meta-beagle/recipes-kernel/linux/linux-bb.org_6.6.bb b/meta-beagle/recipes-kernel/linux/linux-bb.org_6.6.bb
index d6a4ae96..c6dcdfd2 100644
--- a/meta-beagle/recipes-kernel/linux/linux-bb.org_6.6.bb
+++ b/meta-beagle/recipes-kernel/linux/linux-bb.org_6.6.bb
@@ -69,3 +69,5 @@  KERNEL_GIT_URI = "git://github.com/beagleboard/linux.git"
 
 SRC_URI += "file://no-fortify.cfg"
 KERNEL_CONFIG_FRAGMENTS += "${UNPACKDIR}/no-fortify.cfg"
+
+INSANE_SKIP:kernel-modules += "debug-deps"