diff options
| author | Andre McCurdy <armccurdy@gmail.com> | 2017-03-06 14:34:06 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-10 14:50:10 +0000 |
| commit | 3f3ced499c3be21e48abde2387d45133684702ca (patch) | |
| tree | 539508086efb66ab4c5045133e13c4e53c27266f | |
| parent | 3835f04fc35228178fdac5d4f7c8a72b9568c330 (diff) | |
| download | poky-3f3ced499c3be21e48abde2387d45133684702ca.tar.gz | |
sanity.bbclass: allow s3 protocol when sanity checking MIRRORS, etc
Bitbake now supports an Amazon AWS S3 fetcher:
http://git.openembedded.org/bitbake/commit/?id=6fe07ed25457dd7952b60f4b2153d56b15d5eea6
(From OE-Core rev: 5cc3592afc72bae8dd12d3d8ff15bb7418baaea3)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 1fe172f8b2..b5f4756f81 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
| @@ -874,7 +874,7 @@ def check_sanity_everybuild(status, d): | |||
| 874 | mirror_vars = ['MIRRORS', 'PREMIRRORS', 'SSTATE_MIRRORS'] | 874 | mirror_vars = ['MIRRORS', 'PREMIRRORS', 'SSTATE_MIRRORS'] |
| 875 | protocols = ['http', 'ftp', 'file', 'https', \ | 875 | protocols = ['http', 'ftp', 'file', 'https', \ |
| 876 | 'git', 'gitsm', 'hg', 'osc', 'p4', 'svn', \ | 876 | 'git', 'gitsm', 'hg', 'osc', 'p4', 'svn', \ |
| 877 | 'bzr', 'cvs', 'npm', 'sftp', 'ssh'] | 877 | 'bzr', 'cvs', 'npm', 'sftp', 'ssh', 's3' ] |
| 878 | for mirror_var in mirror_vars: | 878 | for mirror_var in mirror_vars: |
| 879 | mirrors = (d.getVar(mirror_var) or '').replace('\\n', ' ').split() | 879 | mirrors = (d.getVar(mirror_var) or '').replace('\\n', ' ').split() |
| 880 | 880 | ||
