From a0658a6682a537330f5619962504e675d7540f40 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 21 Sep 2022 17:54:09 -0700 Subject: [PATCH] ffa-debugfs-mod: Exclude from world builds It installs arm_ffa_user.h and so does arm-ffa-user recipe, lets not build ffa-debugfs-mod in world builds since it does not appear as much in other package dependencies as arm-ffa-user Signed-off-by: Khem Raj Signed-off-by: Jon Mason --- meta-arm/recipes-kernel/ffa-debugfs/ffa-debugfs-mod_2.1.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arm/recipes-kernel/ffa-debugfs/ffa-debugfs-mod_2.1.0.bb b/meta-arm/recipes-kernel/ffa-debugfs/ffa-debugfs-mod_2.1.0.bb index 1b265a57..2b5dd643 100644 --- a/meta-arm/recipes-kernel/ffa-debugfs/ffa-debugfs-mod_2.1.0.bb +++ b/meta-arm/recipes-kernel/ffa-debugfs/ffa-debugfs-mod_2.1.0.bb @@ -37,3 +37,5 @@ python remove_kernel_dependency() { key = "RDEPENDS:kernel-module-arm-ffa-user-" + d.getVar("KERNEL_VERSION") d.delVar(key) } +# Conflicts installing arm_ffa_user.h with arm-ffa-user recipe, lets build only one during world builds +EXCLUDE_FROM_WORLD = "1"