summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2024-11-01 16:29:43 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-01 23:03:32 +0000
commit4322775ca4bfc7ee5d590154d70e34639e1bfe8e (patch)
tree38150d6106e60323c665a977b10777fe160b5d24
parent806c6b974b393faa4b0d289a24c44d1f78c851da (diff)
downloadpoky-4322775ca4bfc7ee5d590154d70e34639e1bfe8e.tar.gz
kexec-tools: update COMPATIBLE_HOST because of makedumpfile
makedumpfile is not compatible with mipsarcho32 and riscv32, so set for kexec-tools accordingly. And update packagegroup-core-tools-testapps too. (From OE-Core rev: 9107d9c09c7dab385c6034778cefadca3613be9c) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb1
-rw-r--r--meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb3
2 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
index 34af40a43f..180660adab 100644
--- a/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
@@ -13,6 +13,7 @@ inherit packagegroup
13KEXECTOOLS ?= "kexec" 13KEXECTOOLS ?= "kexec"
14KEXECTOOLS:e5500-64b ?= "" 14KEXECTOOLS:e5500-64b ?= ""
15KEXECTOOLS:microblaze ?= "" 15KEXECTOOLS:microblaze ?= ""
16KEXECTOOLS:mipsarcho32 ?= ""
16KEXECTOOLS:nios2 ?= "" 17KEXECTOOLS:nios2 ?= ""
17KEXECTOOLS:riscv64 ?= "" 18KEXECTOOLS:riscv64 ?= ""
18KEXECTOOLS:riscv32 ?= "" 19KEXECTOOLS:riscv32 ?= ""
diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb
index be24d064bb..9f5eb6e8c1 100644
--- a/meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb
+++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb
@@ -82,5 +82,8 @@ SYSTEMD_SERVICE:kdump = "kdump.service"
82SECURITY_PIE_CFLAGS:remove = "-fPIE -pie" 82SECURITY_PIE_CFLAGS:remove = "-fPIE -pie"
83 83
84COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)' 84COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)'
85# makedumpfile would not compile on mips/rv32
86COMPATIBLE_HOST:mipsarcho32 = "null"
87COMPATIBLE_HOST:riscv32 = "null"
85 88
86INSANE_SKIP:${PN} = "arch" 89INSANE_SKIP:${PN} = "arch"