diff options
-rw-r--r-- | meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb index df9751189..da3023fe1 100644 --- a/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb +++ b/meta-initramfs/recipes-bsp/images/initramfs-kexecboot-klibc-image.bb | |||
@@ -5,3 +5,9 @@ SUMMARY = "Initramfs image for kexecboot kernel (klibc-static binaries)" | |||
5 | # We really need just kexecboot, kexec and ubiattach | 5 | # We really need just kexecboot, kexec and ubiattach |
6 | # statically compiled against klibc | 6 | # statically compiled against klibc |
7 | IMAGE_INSTALL = "kexecboot-klibc kexec-klibc ubiattach-klibc" | 7 | IMAGE_INSTALL = "kexecboot-klibc kexec-klibc ubiattach-klibc" |
8 | |||
9 | python () { | ||
10 | if d.getVar('TARGET_ARCH', True) == "nios2": | ||
11 | raise bb.parse.SkipPackage("'nios2' not supported arch") | ||
12 | } | ||
13 | |||