From 63c85b64df0b8a5cb33c920a543ea1a6eae64eaf Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 13 Jul 2019 06:43:22 +0000 Subject: [PATCH] jailhouse: Limit OE architectures to supported ones Fixes ERROR: cannot map 'mips' to a jailhouse supported architecture Signed-off-by: Khem Raj Signed-off-by: Denys Dmytriyenko --- recipes-kernel/jailhouse/jailhouse-arch.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-kernel/jailhouse/jailhouse-arch.inc b/recipes-kernel/jailhouse/jailhouse-arch.inc index e06ec231..498b25ed 100644 --- a/recipes-kernel/jailhouse/jailhouse-arch.inc +++ b/recipes-kernel/jailhouse/jailhouse-arch.inc @@ -18,3 +18,5 @@ def map_jh_arch(a, d): bb.error("cannot map '%s' to a jailhouse supported architecture" % a) export JH_ARCH = "${@map_jh_arch(d.getVar('TARGET_ARCH', True), d)}" + +COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"