diff options
author | Daniel Ammann <daniel.ammann@bytesatwork.ch> | 2021-09-13 09:56:50 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-16 09:51:14 +0100 |
commit | 4fb4a6e229e471f2efc092d9dd49e437a8668246 (patch) | |
tree | d28f150b327e42330750b64d8a501df635661412 /bitbake | |
parent | 7b98f81d2f3aa528e69918a9dbcc961a53aa54b6 (diff) | |
download | poky-4fb4a6e229e471f2efc092d9dd49e437a8668246.tar.gz |
bitbake: fetch2/wget: Enable ftps
The fetcher would fail with:
Could not find a fetcher which supports the URL: ftps://...
(Bitbake rev: 9e56710c7203b1ec6cbefa758c81b69b697fe1a4)
Signed-off-by: Daniel Ammann <daniel.ammann@bytesatwork.ch>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 9a49e64a00..349891e852 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py | |||
@@ -69,7 +69,7 @@ class Wget(FetchMethod): | |||
69 | """ | 69 | """ |
70 | Check to see if a given url can be fetched with wget. | 70 | Check to see if a given url can be fetched with wget. |
71 | """ | 71 | """ |
72 | return ud.type in ['http', 'https', 'ftp'] | 72 | return ud.type in ['http', 'https', 'ftp', 'ftps'] |
73 | 73 | ||
74 | def recommends_checksum(self, urldata): | 74 | def recommends_checksum(self, urldata): |
75 | return True | 75 | return True |