summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2020-12-11 16:09:22 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-01 11:55:26 +0000
commit3f08f5b7068ecd3a59fc30dd90515df314a94f84 (patch)
treec863263e0b8fa162f15735ac51707fa500989b53 /meta/classes
parent474cd61f0125c6df11229302fbdc60fc1851846e (diff)
downloadopenembedded-core-contrib-3f08f5b7068ecd3a59fc30dd90515df314a94f84.tar.gz
kernel: set COMPATIBLE_HOST to *-linux
The target system triple contains whether the target is Linux or not, so use it to avoid situations where you can attempt to build a kernel for systems which don't support Linux. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit b1eeeab21a81990321468ddbdd1745ea24d1828d) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/kernel.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 29afd791e9..2a65c001d9 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -1,5 +1,7 @@
inherit linux-kernel-base kernel-module-split
+COMPATIBLE_HOST = ".*-linux"
+
KERNEL_PACKAGE_NAME ??= "kernel"
KERNEL_DEPLOYSUBDIR ??= "${@ "" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else d.getVar("KERNEL_PACKAGE_NAME") }"