From: Richard Purdie Date: Fri, 13 Feb 2026 17:45:58 +0000 (+0000) Subject: sanity: Update to account for removed fetchers X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dea5ac6b6267e306a1e2f444b8d485a3f2072168;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sanity: Update to account for removed fetchers Some fetch types were dropped in bitbake, update the sanity tests to match. Signed-off-by: Richard Purdie Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/classes-global/sanity.bbclass b/meta/classes-global/sanity.bbclass index c89ff2c51f..5165bb3432 100644 --- a/meta/classes-global/sanity.bbclass +++ b/meta/classes-global/sanity.bbclass @@ -957,8 +957,8 @@ def check_sanity_everybuild(status, d): import re mirror_vars = ['MIRRORS', 'PREMIRRORS', 'SSTATE_MIRRORS'] protocols = ['http', 'ftp', 'file', 'https', \ - 'git', 'gitsm', 'hg', 'osc', 'p4', 'svn', \ - 'bzr', 'cvs', 'npm', 'sftp', 'ssh', 's3', \ + 'git', 'gitsm', 'hg', 'p4', 'svn', \ + 'npm', 'sftp', 'ssh', 's3', \ 'az', 'ftps', 'crate', 'gs'] for mirror_var in mirror_vars: mirrors = (d.getVar(mirror_var) or '').replace('\\n', ' ').split()