diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-07-31 15:23:11 +0100 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-08-01 16:02:45 +0000 |
commit | daef2c973323d9bc6c3de790b002bd3791db1b37 (patch) | |
tree | 86386e9940c1fc0593103dd8b567de0470c9120c | |
parent | 3b9ae7631db62f6b8cf334ea6ffe998fcd4f89ed (diff) | |
download | meta-virtualization-daef2c973323d9bc6c3de790b002bd3791db1b37.tar.gz |
xen-image-minimal: Add missing dependency causing intermittent failures
"bitbake xen-image-minimal -c do_image_wic" fails with:
| ERROR: _exec_cmd: install -m 0644 tmp/deploy/images/qemux86-64/xen-qemux86-64.gz tmp/work/qemux86_64-poky-linux/xen-image-minimal/1.0/tmp-wic/hdd/boot/xen.gz returned '1' instead of 0
| output: install: cannot stat 'tmp/deploy/images/qemux86-64/xen-qemux86-64.gz': No such file or directory
|
| WARNING: exit code 1 from a shell command.
ERROR: Task (/media/build/poky/meta-virtualization/recipes-extended/images/xen-image-minimal.bb:do_image_wic) failed with exit code '1'
Add the missing dependency to avoid this.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-extended/images/xen-image-minimal.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes-extended/images/xen-image-minimal.bb b/recipes-extended/images/xen-image-minimal.bb index fe79a485..e6fa93ca 100644 --- a/recipes-extended/images/xen-image-minimal.bb +++ b/recipes-extended/images/xen-image-minimal.bb | |||
@@ -102,6 +102,7 @@ QB_SERIAL_OPT = "-serial mon:stdio" | |||
102 | # qemux86-64 machine does not include 'wic' in IMAGE_FSTYPES, which is needed | 102 | # qemux86-64 machine does not include 'wic' in IMAGE_FSTYPES, which is needed |
103 | # to boot this image, so add it here: | 103 | # to boot this image, so add it here: |
104 | IMAGE_FSTYPES:qemux86-64 += "wic" | 104 | IMAGE_FSTYPES:qemux86-64 += "wic" |
105 | do_image_wic[depends] += "xen:do_deploy" | ||
105 | # Networking: the qemuboot.bbclass default virtio network device works ok | 106 | # Networking: the qemuboot.bbclass default virtio network device works ok |
106 | # and so does the emulated e1000 -- choose according to the network device | 107 | # and so does the emulated e1000 -- choose according to the network device |
107 | # drivers that are present in your dom0 Linux kernel. To switch to e1000: | 108 | # drivers that are present in your dom0 Linux kernel. To switch to e1000: |