summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorCharlie Johnston <charlie.johnston@loftorbital.com>2023-11-27 06:12:38 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-02 17:18:57 +0000
commitfdbf77924572274e30bc8638dd78702fb73fbbbf (patch)
tree328438f424d249972a8d09505ad5f29f348c3970 /meta/conf/bitbake.conf
parent4371f927bc5e94eac0b11e47e2abcd3a0621655c (diff)
downloadpoky-fdbf77924572274e30bc8638dd78702fb73fbbbf.tar.gz
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. (From OE-Core rev: d5e481bbd96210e608fa0aa5f7b54c1398c7d273) Signed-off-by: Charlie Johnston <charlie.johnston@loftorbital.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 983987cf7e..e7826e7af9 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -543,6 +543,9 @@ HOSTTOOLS_NONFATAL += "scp"
543# Used by Mercurial fetcher 543# Used by Mercurial fetcher
544HOSTTOOLS_NONFATAL += "hg" 544HOSTTOOLS_NONFATAL += "hg"
545 545
546# Used by gcp fetcher
547HOSTTOOLS_NONFATAL += "gsutil"
548
546# Link to git-lfs if present 549# Link to git-lfs if present
547HOSTTOOLS_NONFATAL += "git-lfs" 550HOSTTOOLS_NONFATAL += "git-lfs"
548 551