From 18a0b35ad2b8cce9cf01e1ba78aaf38084636021 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 3 Dec 2021 17:53:47 -0800 Subject: [PATCH] ffa-debugfs-mod: Pin to arm/aarch64 hosts This seems to be needing arm specific kernel headers, so I infer this still is arm specific module Fixes below error on non-arm hosts /git/arm_ffa_user.c:12:10: fatal error: linux/arm_ffa.h: No such file or directory | 12 | #include | | ^~~~~~~~~~~~~~~~~ | compilation terminated. 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 e9c3611c..2db8afc1 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 @@ -27,3 +27,5 @@ do_install:append() { install -D -p -m 0755 ${B}/load_ffa_debugfs.sh ${D}/${bindir}/load_ffa_debugfs.sh install -m 0644 ${S}/arm_ffa_user.h ${D}/${includedir}/arm_ffa_user.h } + +COMPATIBLE_HOST = "(arm|aarch64).*-linux"