diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2016-04-29 19:46:10 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-22 16:11:14 +0100 |
commit | aac36591db785922aba262e6c5b5fca11a115d4c (patch) | |
tree | dd42ab64e80f8acba828947fe4084380890c661e /meta/recipes-extended/images | |
parent | 1974624eb98d090556b23ece45271e1225c68031 (diff) | |
download | poky-aac36591db785922aba262e6c5b5fca11a115d4c.tar.gz |
core-image-{minimal, testmaster}-initramfs: set COMPATIBLE_HOST
* use the same COMPATIBLE_HOST restriction as initramfs-live-install(-testfs)
to resolve ugly error when trying to build them e.g. for ARM:
ERROR: Nothing RPROVIDES 'initramfs-live-install-testfs' (but /home/jenkins/oe/world/shr-core/openembedded-core/meta/recipes-extended/images/core-image-testmaster-initramfs.bb RDEPENDS on or otherwise requires it)
ERROR: initramfs-live-install-testfs was skipped: incompatible with host arm-oe-linux-gnueabi (not in COMPATIBLE_HOST)
NOTE: Runtime target 'initramfs-live-install-testfs' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['initramfs-live-install-testfs']
ERROR: Required build target 'core-image-testmaster-initramfs' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-testmaster-initramfs', 'initramfs-live-install-testfs']
ERROR: Nothing RPROVIDES 'initramfs-live-install' (but /home/jenkins/oe/world/shr-core/openembedded-core/meta/recipes-core/images/core-image-minimal-initramfs.bb RDEPENDS on or otherwise requires it)
ERROR: initramfs-live-install was skipped: incompatible with host arm-oe-linux-gnueabi (not in COMPATIBLE_HOST)
NOTE: Runtime target 'initramfs-live-install' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['initramfs-live-install']
ERROR: Required build target 'core-image-minimal-initramfs' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-minimal-initramfs', 'initramfs-live-install']
(From OE-Core rev: 8016b51d81ca9ed1567effa9d2870b1d98684350)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/images')
-rw-r--r-- | meta/recipes-extended/images/core-image-testmaster-initramfs.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-extended/images/core-image-testmaster-initramfs.bb b/meta/recipes-extended/images/core-image-testmaster-initramfs.bb index ad1407c7a2..09a6d16042 100644 --- a/meta/recipes-extended/images/core-image-testmaster-initramfs.bb +++ b/meta/recipes-extended/images/core-image-testmaster-initramfs.bb | |||
@@ -18,3 +18,6 @@ inherit core-image | |||
18 | IMAGE_ROOTFS_SIZE = "8192" | 18 | IMAGE_ROOTFS_SIZE = "8192" |
19 | IMAGE_ROOTFS_EXTRA_SPACE = "0" | 19 | IMAGE_ROOTFS_EXTRA_SPACE = "0" |
20 | BAD_RECOMMENDATIONS += "busybox-syslog" | 20 | BAD_RECOMMENDATIONS += "busybox-syslog" |
21 | |||
22 | # Use the same restriction as initramfs-live-install-testfs | ||
23 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | ||