diff mbox series

bitbake.conf: Add gsutil as hosttool for gcp fetcher.

Message ID 20231127131238.1129053-1-charlie.johnston@loftorbital.com
State Accepted, archived
Commit d5e481bbd96210e608fa0aa5f7b54c1398c7d273
Headers show
Series bitbake.conf: Add gsutil as hosttool for gcp fetcher. | expand

Commit Message

Charlie Johnston Nov. 27, 2023, 1:12 p.m. UTC
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 <charlie.johnston@loftorbital.com>
---
 meta/conf/bitbake.conf | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

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"
 # Used by Mercurial fetcher
 HOSTTOOLS_NONFATAL += "hg"
 
+# Used by gcp fetcher
+HOSTTOOLS_NONFATAL += "gsutil"
+
 # Link to git-lfs if present
 HOSTTOOLS_NONFATAL += "git-lfs"