diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2021-07-14 10:01:57 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-20 18:59:18 +0100 |
commit | 8410987884fbf5f71a116d4e02763324aa7300f8 (patch) | |
tree | b6d23fe1c7f3068edf2cf923108f2014576f41ef /bitbake/bin | |
parent | 75fad23fc06c008a03414a1fc288a8614c6af9ca (diff) | |
download | poky-8410987884fbf5f71a116d4e02763324aa7300f8.tar.gz |
bitbake: bitbake: Add piping compression library
Adds a library that implements file-like objects (similar to
gzip.GzipFile) that can stream to arbitrary compression programs. This
is utilized to implement a LZ4 and zstd compression API.
(Bitbake rev: 61c3acd058ea018696bd284b3922d0b458838d05)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake-selftest | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake-selftest b/bitbake/bin/bitbake-selftest index 6c0737416b..aec4706921 100755 --- a/bitbake/bin/bitbake-selftest +++ b/bitbake/bin/bitbake-selftest | |||
@@ -29,6 +29,7 @@ tests = ["bb.tests.codeparser", | |||
29 | "bb.tests.runqueue", | 29 | "bb.tests.runqueue", |
30 | "bb.tests.siggen", | 30 | "bb.tests.siggen", |
31 | "bb.tests.utils", | 31 | "bb.tests.utils", |
32 | "bb.tests.compression", | ||
32 | "hashserv.tests", | 33 | "hashserv.tests", |
33 | "layerindexlib.tests.layerindexobj", | 34 | "layerindexlib.tests.layerindexobj", |
34 | "layerindexlib.tests.restapi", | 35 | "layerindexlib.tests.restapi", |