From: Charlie Johnston Date: Mon, 27 Nov 2023 13:12:38 +0000 (-0700) Subject: bitbake.conf: Add gsutil as hosttool for gcp fetcher. X-Git-Tag: yocto-5.2~4457 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5e481bbd96210e608fa0aa5f7b54c1398c7d273;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake.conf: Add gsutil as hosttool for gcp fetcher. The gcp fetcher uses gsutil to check if the file exists before fetching. This change ensures the tool is included as a nonfatal hosttool so that it's included in the build environment when available. Signed-off-by: Charlie Johnston Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 983987cf7ef..e7826e7af96 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -543,6 +543,9 @@ HOSTTOOLS_NONFATAL += "scp" # Used by Mercurial fetcher HOSTTOOLS_NONFATAL += "hg" +# Used by gcp fetcher +HOSTTOOLS_NONFATAL += "gsutil" + # Link to git-lfs if present HOSTTOOLS_NONFATAL += "git-lfs"