This commit adds aws-cli support to bitbake in order to support the s3 fetcher in bitbake.
Signed-off-by: Elizabeth 'pidge' Flanagan <[email protected]> --- meta/conf/bitbake.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index fa5445b..f21b8d3 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -458,8 +458,8 @@ HOSTTOOLS += " \ bash sh cut sed gcc ld git rm install which find xargs cat true mktemp \ grep tar gzip touch cp mv basename dirname tr getopt sort awk head tail \ mkdir patch uniq perl python chmod python3 ar strip expr ls make as \ - ranlib egrep echo chown cpio tee wc wget bzip2 stat date rmdir od diff \ - md5sum dd chrpath file pod2man gunzip python2.7 ln g++ [ false true \ + ranlib egrep echo chown cpio tee wc wget aws bzip2 stat date rmdir \ + od diff md5sum dd chrpath file pod2man gunzip python2.7 ln g++ [ false true \ uname test hostname nm objdump objcopy cmp printf env readlink gawk fgrep \ expand pwd sleep diffstat chgrp flock ldd strings rpcgen du makeinfo \ getconf mknod cpp readelf split \ @@ -640,6 +640,7 @@ FETCHCMD_cvs = "/usr/bin/env cvs" FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" FETCHCMD_bzr = "/usr/bin/env bzr" FETCHCMD_hg = "/usr/bin/env hg" +FETCHCMD_s3 = "/usr/bin/env aws s3" SRCDATE = "${DATE}" SRCREV ??= "INVALID" -- 1.9.1 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
