initramfs-kexecboot-klibc-image: Skip for riscv32

klibc is not yet ported to riscv32

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2025-12-13 00:49:05 -08:00
parent c89e5b9e2d
commit 7b9bfe4d6f
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -9,4 +9,6 @@ IMAGE_INSTALL = "kexecboot-klibc kexec-klibc ubiattach-klibc"
python () {
if d.getVar('TARGET_ARCH') == "nios2":
raise bb.parse.SkipRecipe("'nios2' not supported arch")
if d.getVar('TARGET_ARCH') == "riscv32":
raise bb.parse.SkipRecipe("'riscv32' not supported arch")
}