diff mbox series

[meta-oe] makedumpfile: Change COMPATIBLE_HOST check to exclude unsupported arches

Message ID 20231109054401.1672977-1-raj.khem@gmail.com
State New
Headers show
Series [meta-oe] makedumpfile: Change COMPATIBLE_HOST check to exclude unsupported arches | expand

Commit Message

Khem Raj Nov. 9, 2023, 5:44 a.m. UTC
Right now riscv32 and mips architecture support is missing.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.7.4.bb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

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"