summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-02-17 17:09:34 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-21 23:37:26 +0000
commit4f77505d94a8f6260933f457e9848d1d2fa98ce5 (patch)
tree89d4bbbf29d4d824e65c93754c9522993c5a3290 /bitbake/lib/bb/event.py
parent424269caeadd21b01a860d032ca81167c7ce7239 (diff)
downloadpoky-4f77505d94a8f6260933f457e9848d1d2fa98ce5.tar.gz
bitbake: lib/bb: Replace "ABORT" action in BB_DISKMON_DIRS
In line with the inclusive language migration defined at: https://wiki.yoctoproject.org/wiki/Inclusive_language replace the "ABORT" action in BB_DISKMON_DIRS entries with "HALT". In order to ease migration, code has been added to warn users to update their configurations if the old name is used, as opposed to to throwing an error. (Bitbake rev: 11dc65dc077398ff9818060769c99c0090291186) Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 89215e3dea..df020551e3 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -486,7 +486,7 @@ class BuildCompleted(BuildBase, OperationCompleted):
486 BuildBase.__init__(self, n, p, failures) 486 BuildBase.__init__(self, n, p, failures)
487 487
488class DiskFull(Event): 488class DiskFull(Event):
489 """Disk full case build aborted""" 489 """Disk full case build halted"""
490 def __init__(self, dev, type, freespace, mountpoint): 490 def __init__(self, dev, type, freespace, mountpoint):
491 Event.__init__(self) 491 Event.__init__(self)
492 self._dev = dev 492 self._dev = dev