diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2018-04-01 23:28:38 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2018-04-01 23:28:51 +0200 |
commit | 59723cb364cd123151d8f647a22f52145ffb8646 (patch) | |
tree | 34a88c80f1312d5401a07a0e67ec4f6ef3c78929 /jjb/common | |
parent | 4cbee00029eec55a3ca09e4e2abe57c40ca2b973 (diff) |
Make sure to build wic-tools to avoid imaging to fail
Change-Id: Ib38df07de3b3ce8b17311db1a91540d4348bfce5
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'jjb/common')
-rw-r--r-- | jjb/common/include-agl-bitbake-image.sh | 2 | ||||
-rw-r--r-- | jjb/common/include-agl-bitbake-sdk.sh | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/jjb/common/include-agl-bitbake-image.sh b/jjb/common/include-agl-bitbake-image.sh index aa4b2086..3d1b501c 100644 --- a/jjb/common/include-agl-bitbake-image.sh +++ b/jjb/common/include-agl-bitbake-image.sh @@ -5,6 +5,8 @@ ## bitbake the image ################################################################################ +bitbake wic-tools + # finally, build the agl-demo-platform (we retry to catch the tar-native bug) ( ( bitbake $TARGETIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake -v -v $TARGETIMAGE ) ) || ( echo '## Failed again, bail out ...' ; exit 1 ) diff --git a/jjb/common/include-agl-bitbake-sdk.sh b/jjb/common/include-agl-bitbake-sdk.sh index 591ea6ba..9928bec3 100644 --- a/jjb/common/include-agl-bitbake-sdk.sh +++ b/jjb/common/include-agl-bitbake-sdk.sh @@ -5,6 +5,8 @@ ## bitbake the sdk ################################################################################ +bitbake wic-tools + # finally, build the agl-demo-platform (we retry to catch the tar-native bug) #( ( bitbake -c $TARGETSDK $TARGETIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake -c $TARGETSDK $TARGETIMAGE ) ) || ( echo '## Failed again, bail out ... ##' ; exit 1 ) ( ( bitbake $TARGETSDKIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake $TARGETSDKIMAGE ) ) || ( echo '## Failed again, bail out ... ##' ; exit 1 ) |