From: Jackie Huang <[email protected]> When building on a multilib capable BSP, it's possible for the kernel bit size to be different then the userspace. Avoid the QA test when building the kernel module.
Signed-off-by: Jackie Huang <[email protected]> --- meta-networking/recipes-kernel/netmap/netmap-modules_git.bb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb index c1c319d..286b429 100644 --- a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb +++ b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb @@ -9,6 +9,11 @@ CLEANBROKEN = "1" export INSTALL_MOD_DIR="kernel/netmap-modules" +# When building on a multilib capable BSP, it's possible for the +# kernel bit size to be different then the userspace. Avoid the QA test +# when building modules +INSANE_SKIP_kernel-module-netmap = "arch" + EXTRA_OECONF = "--kernel-dir=${STAGING_KERNEL_BUILDDIR} \ --kernel-sources=${STAGING_KERNEL_DIR} \ --install-mod-path=${D} \ -- 2.3.5 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
