diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-02-17 17:09:33 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 23:37:26 +0000 |
commit | 424269caeadd21b01a860d032ca81167c7ce7239 (patch) | |
tree | 62b67232f8b358fddac8617ded45df7aa61442a2 /bitbake/lib/bb/cookerdata.py | |
parent | 09a62d96c76333f8abda1d28156378e42630fd9a (diff) | |
download | poky-424269caeadd21b01a860d032ca81167c7ce7239.tar.gz |
bitbake: lib/bb: Replace "abort" usage in task handling
In line with the inclusive language migration defined at:
https://wiki.yoctoproject.org/wiki/Inclusive_language
replace the use of "abort" with "halt" in code related to handling
task failure.
(Bitbake rev: 831fb7f2329a3cd95b71e9c85d7d7f0d717f947f)
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cookerdata.py')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index ddf05b92ab..fe5696c704 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -57,7 +57,7 @@ class ConfigParameters(object): | |||
57 | 57 | ||
58 | def updateToServer(self, server, environment): | 58 | def updateToServer(self, server, environment): |
59 | options = {} | 59 | options = {} |
60 | for o in ["abort", "force", "invalidate_stamp", | 60 | for o in ["halt", "force", "invalidate_stamp", |
61 | "dry_run", "dump_signatures", | 61 | "dry_run", "dump_signatures", |
62 | "extra_assume_provided", "profile", | 62 | "extra_assume_provided", "profile", |
63 | "prefile", "postfile", "server_timeout", | 63 | "prefile", "postfile", "server_timeout", |
@@ -124,7 +124,7 @@ class CookerConfiguration(object): | |||
124 | self.prefile = [] | 124 | self.prefile = [] |
125 | self.postfile = [] | 125 | self.postfile = [] |
126 | self.cmd = None | 126 | self.cmd = None |
127 | self.abort = True | 127 | self.halt = True |
128 | self.force = False | 128 | self.force = False |
129 | self.profile = False | 129 | self.profile = False |
130 | self.nosetscene = False | 130 | self.nosetscene = False |