Searched refs:bintool (Results 1 - 25 of 26) sorted by relevance

12

/u-boot/tools/binman/btool/
H A Dlzop.py14 from binman import bintool namespace
17 class Bintoollzop(bintool.BintoolPacker):
20 This bintool supports running `lzop` to compress and decompress data, as
H A Dxz.py14 from binman import bintool namespace
17 class Bintoolxz(bintool.BintoolPacker):
20 This bintool supports running `xz` to compress and decompress data, as
H A Dzstd.py14 from binman import bintool namespace
17 class Bintoolzstd(bintool.BintoolPacker):
20 This bintool supports running `zstd` to compress and decompress data, as
H A Dbzip2.py14 from binman import bintool namespace
17 class Bintoolbzip2(bintool.BintoolPacker):
20 This bintool supports running `bzip2` to compress and decompress data, as
H A Dbtool_gzip.py14 from binman import bintool namespace
17 class Bintoolgzip(bintool.BintoolPacker):
20 This bintool supports running `gzip` to compress and decompress data, as
H A D_testing.py6 This is not a real bintool, just one used for testing"""
8 from binman import bintool namespace
11 class Bintool_testing(bintool.Bintool):
30 if method == bintool.FETCH_BIN:
34 if method == bintool.FETCH_BUILD:
H A Dfdt_add_pubkey.py7 from binman import bintool namespace
9 class Bintoolfdt_add_pubkey(bintool.Bintool):
12 This bintool supports running `fdt_add_pubkey`.
65 if method != bintool.FETCH_BIN:
H A Dfiptool.py32 from binman import bintool namespace
34 class Bintoolfiptool(bintool.Bintool):
37 This bintool supports running `fiptool` with some basic parameters as
108 if method != bintool.FETCH_BUILD:
H A Dmkimage.py8 from binman import bintool namespace
10 class Bintoolmkimage(bintool.Bintool):
13 This bintool supports running `mkimage` with some basic parameters as
67 if method != bintool.FETCH_BIN:
H A Dcbfstool.py116 from binman import bintool namespace
118 class Bintoolcbfstool(bintool.Bintool):
121 This bintool supports creating new CBFS images and adding files to an
215 if method != bintool.FETCH_BIN:
H A Difwitool.py59 from binman import bintool namespace
61 class Bintoolifwitool(bintool.Bintool):
64 This bintool supports running `ifwitool` with some basic parameters as
162 if method != bintool.FETCH_BIN:
H A Dlz4.py62 from binman import bintool namespace
66 class Bintoollz4(bintool.Bintool):
69 This bintool supports running `lz4` to compress and decompress data, as
126 if method != bintool.FETCH_BIN:
H A Dbootgen.py17 from binman import bintool namespace
21 class Bintoolbootgen(bintool.Bintool):
130 if method != bintool.FETCH_BUILD:
H A Dfutility.py55 from binman import bintool namespace
57 class Bintoolfutility(bintool.Bintool):
163 if method != bintool.FETCH_BUILD:
H A Dmkeficapsule.py26 from binman import bintool namespace
28 class Bintoolmkeficapsule(bintool.Bintool):
31 This bintool is used for generating the EFI capsules. The
119 if method != bintool.FETCH_BUILD:
H A Dlzma_alone.py39 from binman import bintool namespace
43 class Bintoollzma_alone(bintool.Bintool):
46 This bintool supports running `lzma_alone` to compress and decompress data,
109 if method != bintool.FETCH_BIN:
H A Dopenssl.py15 from binman import bintool namespace
25 class Bintoolopenssl(bintool.Bintool):
28 This bintool supports creating new openssl certificates.
357 if method != bintool.FETCH_BIN:
/u-boot/tools/binman/
H A Dbintool_test.py16 from binman import bintool namespace
17 from binman.bintool import Bintool
29 self._indir = tempfile.mkdtemp(prefix='bintool.')
42 """Test that unknown bintool types are detected"""
49 """Check that the _testing bintool is not cached"""
74 self.assertEqual(bintool.PRESENT,
75 btest.fetch_tool(bintool.FETCH_ANY, col, True))
84 method (bintool.FETCH_...: Fetch method to use
103 stdout = self.check_fetch_url(fail_download, bintool.FETCH_ANY)
111 stdout = self.check_fetch_url(cause_exc, bintool
[all...]
H A Dcontrol.py21 from binman import bintool namespace
182 bintool.Bintool.WriteDocs(modules, test_missing)
720 (image.name, ' '.join([os.path.basename(bintool.name)
721 for bintool in missing_bintool_list])))
752 bintool.Bintool.set_tool_dir(args.tooldir)
778 bintool.Bintool.list_all()
783 bintool.Bintool.fetch_tools(bintool.FETCH_ANY,
838 bintool.Bintool.set_missing_list(
861 bintool
[all...]
H A Dmain.py36 from binman import bintool namespace
126 elif args.cmd == 'bintool-docs':
127 control.write_bintool_docs(bintool.Bintool.get_tool_list())
H A Dbinman36 from binman import bintool
126 elif args.cmd == 'bintool-docs':
127 control.write_bintool_docs(bintool.Bintool.get_tool_list())
H A Dentry.py14 from binman import bintool namespace
1157 def record_missing_bintool(self, bintool):
1158 """Record a missing bintool that was needed to produce this entry
1161 bintool (Bintool): Bintool that was missing
1163 if bintool not in self.missing_bintools:
1164 self.missing_bintools.append(bintool)
1174 for bintool in self.missing_bintools:
1175 if bintool not in missing_list:
1176 missing_list.append(bintool)
1281 """Add a new bintool t
[all...]
H A Dcbfs_util.py23 from binman import bintool namespace
238 self.comp_bintool = bintool.Bintool.create('lz4')
240 self.comp_bintool = bintool.Bintool.create('lzma_alone')
H A Dfip_util_test.py23 from binman import bintool namespace
28 FIPTOOL = bintool.Bintool.create('fiptool')
H A Dftest.py23 from binman import bintool namespace
257 cls.comp_bintools[name] = bintool.Bintool.create(name)
287 def _CheckBintool(self, bintool):
288 if not bintool.is_present():
289 self.skipTest('%s not available' % bintool.name)
292 bintool = self.comp_bintools['lz4']
293 self._CheckBintool(bintool)
2086 bintool = self.comp_bintools['lz4']
2087 return bintool.decompress(data)
2475 ifwitool = bintool
[all...]

Completed in 103 milliseconds

12