diff options
author | Kai Kang <kai.kang@windriver.com> | 2024-11-01 16:29:43 +0800 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-11-30 05:41:59 -0800 |
commit | 814bde9a6b9bb9267a073b05e5307da018a6040f (patch) | |
tree | 8298aae82b6bc7b6c8e6a03cd7794927fbcdabd9 /meta | |
parent | afa029245b463d254c0f3c47d12275b36fbd5269 (diff) | |
download | poky-814bde9a6b9bb9267a073b05e5307da018a6040f.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: 6922821ab9a0e72e666e57e4b941e5821503509e)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 9107d9c09c7dab385c6034778cefadca3613be9c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb | 1 | ||||
-rw-r--r-- | meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb | 3 |
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 | |||
13 | KEXECTOOLS ?= "kexec" | 13 | KEXECTOOLS ?= "kexec" |
14 | KEXECTOOLS:e5500-64b ?= "" | 14 | KEXECTOOLS:e5500-64b ?= "" |
15 | KEXECTOOLS:microblaze ?= "" | 15 | KEXECTOOLS:microblaze ?= "" |
16 | KEXECTOOLS:mipsarcho32 ?= "" | ||
16 | KEXECTOOLS:nios2 ?= "" | 17 | KEXECTOOLS:nios2 ?= "" |
17 | KEXECTOOLS:riscv64 ?= "" | 18 | KEXECTOOLS:riscv64 ?= "" |
18 | KEXECTOOLS:riscv32 ?= "" | 19 | KEXECTOOLS: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 2c2901f19e..4edd6b2c65 100644 --- a/meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb +++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.29.bb | |||
@@ -81,5 +81,8 @@ SYSTEMD_SERVICE:kdump = "kdump.service" | |||
81 | SECURITY_PIE_CFLAGS:remove = "-fPIE -pie" | 81 | SECURITY_PIE_CFLAGS:remove = "-fPIE -pie" |
82 | 82 | ||
83 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)' | 83 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)' |
84 | # makedumpfile would not compile on mips/rv32 | ||
85 | COMPATIBLE_HOST:mipsarcho32 = "null" | ||
86 | COMPATIBLE_HOST:riscv32 = "null" | ||
84 | 87 | ||
85 | INSANE_SKIP:${PN} = "arch" | 88 | INSANE_SKIP:${PN} = "arch" |