diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-02-17 17:09:32 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 23:37:26 +0000 |
commit | 09a62d96c76333f8abda1d28156378e42630fd9a (patch) | |
tree | 0604ebe06323b96568c179388ba1bead48884715 /bitbake/lib/bb | |
parent | f2fc11cad737f1da2cbee45c645e1b87225c85c7 (diff) | |
download | poky-09a62d96c76333f8abda1d28156378e42630fd9a.tar.gz |
bitbake: lib: Replace remaining "blacklist"/"whitelist" usage
In line with the inclusive language migration defined at:
https://wiki.yoctoproject.org/wiki/Inclusive_language
replace the remaining non-backwards-compatibility related usage
of "blacklist"/"whitelist" with "allowed"/"disallowed" in a few
places as appropriate.
(Bitbake rev: f579fb8c23d2919d25641fa4234f8a1e9c06a922)
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 35fae6623a..5dfe5ff360 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -199,7 +199,7 @@ class URI(object): | |||
199 | file://hostname/absolute/path.diff (would be IETF compliant) | 199 | file://hostname/absolute/path.diff (would be IETF compliant) |
200 | 200 | ||
201 | Note that the last case only applies to a list of | 201 | Note that the last case only applies to a list of |
202 | "whitelisted" schemes (currently only file://), that requires | 202 | explicitly allowed schemes (currently only file://), that requires |
203 | its URIs to not have a network location. | 203 | its URIs to not have a network location. |
204 | """ | 204 | """ |
205 | 205 | ||