Message ID | 20220913063727.2748504-1-raj.khem@gmail.com |
---|---|
State | New |
Headers | show |
Series | ffa-debugfs-mod: Exclude from world builds | expand |
On Mon, 12 Sep 2022 23:37:27 -0700, Khem Raj wrote: > 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 Applied, thanks! [1/1] ffa-debugfs-mod: Exclude from world builds commit: a0658a6682a537330f5619962504e675d7540f40 Best regards,
On Mon, 12 Sep 2022 23:37:27 -0700, Khem Raj wrote: > 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 Applied, thanks! [1/1] ffa-debugfs-mod: Exclude from world builds commit: a0658a6682a537330f5619962504e675d7540f40 Best regards,
On Mon, 12 Sep 2022 23:37:27 -0700, Khem Raj wrote: > 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 Applied, thanks! [1/1] ffa-debugfs-mod: Exclude from world builds commit: a0658a6682a537330f5619962504e675d7540f40 Best regards,
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 1b265a5..2b5dd64 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"
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 <raj.khem@gmail.com> --- meta-arm/recipes-kernel/ffa-debugfs/ffa-debugfs-mod_2.1.0.bb | 2 ++ 1 file changed, 2 insertions(+)