diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-05-17 21:42:58 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-27 15:39:10 +0200 |
commit | 21a9e433304d2bdf5ca0da8784a523efc7123d8a (patch) | |
tree | a9fbc6a3067b5122f6d56fb6b520bfbccdb98c82 /meta-initramfs/recipes-bsp | |
parent | f6db87726d84976275cfe6b74a9e270f6bf6792e (diff) | |
download | meta-openembedded-21a9e433304d2bdf5ca0da8784a523efc7123d8a.tar.gz |
initramfs-kexecboot-klibc-image: Skip for nios2
nios2 does not support klibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-bsp')
-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 | |||