diff options
Diffstat (limited to 'jjb/common')
-rw-r--r-- | jjb/common/include-agl-bitbake-sdk-x64only.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/jjb/common/include-agl-bitbake-sdk-x64only.sh b/jjb/common/include-agl-bitbake-sdk-x64only.sh new file mode 100644 index 00000000..8bc47635 --- /dev/null +++ b/jjb/common/include-agl-bitbake-sdk-x64only.sh @@ -0,0 +1,13 @@ +# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de +# License GPLv2 + +################################################################################ +## bitbake the sdk +################################################################################ + +# finally, build the agl-demo-platform (we retry to catch the tar-native bug) +if test x"qemux86-64" = x"${TARGETMACHINE}" ; then +( ( bitbake $TARGETSDKIMAGE ) || ( echo '## Failed once, retry .. ##' ; sync ; sleep 2 ; bitbake $TARGETSDKIMAGE ) ) || ( echo '## Failed again, bail out ... ##' ; exit 1 ) + +du -hs tmp/deploy/* +fi |