summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-31 17:59:18 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-01 11:27:42 +0100
commit914c33e8ff77e6bb95ce9a46c9bde7fa2f45c583 (patch)
tree16c397ed50f64ef2e717f5fbb2d05276c6693642 /meta-yocto-bsp
parent9ad477cf40c29110003c59225c701ec72ef8138a (diff)
downloadpoky-914c33e8ff77e6bb95ce9a46c9bde7fa2f45c583.tar.gz
beaglebone-yocto: Add missing wic image u-boot deploy dependency
The wic image built for beaglebone-yocto needs the u-boot deployed artefacts but there is no direct dependency. Usually this happens to work but if the u-boot build fails, the image built with -k exposes this race. Add the missing dependnecy. [YOCTO #13280] (From meta-yocto rev: d0abe4a39ad261bcd4993ebd3340c2160870959a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r--meta-yocto-bsp/conf/machine/beaglebone-yocto.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
index bc18ee8c47..35814cd8f1 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
@@ -18,7 +18,7 @@ IMAGE_FSTYPES += "tar.bz2 jffs2 wic wic.bmap"
18EXTRA_IMAGECMD_jffs2 = "-lnp " 18EXTRA_IMAGECMD_jffs2 = "-lnp "
19WKS_FILE ?= "beaglebone-yocto.wks" 19WKS_FILE ?= "beaglebone-yocto.wks"
20IMAGE_INSTALL_append = " kernel-devicetree kernel-image-zimage" 20IMAGE_INSTALL_append = " kernel-devicetree kernel-image-zimage"
21do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" 21do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot u-boot:do_deploy"
22 22
23SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyO0" 23SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyO0"
24SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" 24SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"