initramfs-kexecboot-image: Allow supported architectures

Not all arches e.g. rv32 support kexec atm, reflect that here

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2025-12-29 10:07:02 -08:00
parent ae5da4edb3
commit 908defcc18
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -27,4 +27,8 @@ IMAGE_ROOTFS_EXTRA_SPACE = "0"
# disable runtime dependency on run-postinsts -> update-rc.d
ROOTFS_BOOTSTRAP_INSTALL = ""
# Match what kexec supports in core
COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*|riscv64.*)-(linux|freebsd.*)'
# makedumpfile would not compile on mips/rv32
COMPATIBLE_HOST:mipsarcho32 = "null"
COMPATIBLE_HOST:riscv32 = "null"