aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-kernel
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-11-08 21:42:29 -0800
committerKhem Raj <raj.khem@gmail.com>2023-11-08 22:51:28 -0800
commit31aaf729e6078b6f2b6088c1d75be9eb4f7c2369 (patch)
treefb0c6cff2ddd422270ecdc4d8d74696dea42e8b7 /meta-oe/recipes-kernel
parent66aeb2b75e06144999f9f21eb9d07895bee9261a (diff)
downloadmeta-openembedded-31aaf729e6078b6f2b6088c1d75be9eb4f7c2369.tar.gz
makedumpfile: Change COMPATIBLE_HOST check to exclude unsupported arches
Right now riscv32 and mips architecture support is missing. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-kernel')
-rw-r--r--meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.7.4.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.7.4.bb b/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.7.4.bb
index e46dca53a6..b016d5da4d 100644
--- a/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.7.4.bb
+++ b/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.7.4.bb
@@ -16,8 +16,9 @@ SRCREV = "3bc3b3e3be33a9aa040e654f055912063e576c1b"
DEPENDS = "bzip2 zlib elfutils xz"
RDEPENDS:${PN}-tools = "perl ${PN}"
-# mips would not compile.
-COMPATIBLE_HOST = "(x86_64|i.86|powerpc|arm|aarch64).*-linux"
+# mips/rv32 would not compile.
+COMPATIBLE_HOST:mipsarcho32 = "null"
+COMPATIBLE_HOST:riscv32 = "null"
PACKAGES =+ "${PN}-tools"
FILES:${PN}-tools = "${bindir}/*.pl"