diff options
| author | Simon Glass <[email protected]> | 2021-07-06 10:36:37 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2021-07-21 10:27:35 -0600 |
| commit | c69d19c8f829d3320db5224f9f28d13cfb16049e (patch) | |
| tree | c13527b8a6aecf176f48ee6c0f8f657bb4dd303a /tools/binman/test | |
| parent | 650ead1a4aac3010a029526d639682096c1d0469 (diff) | |
binman: Support multithreading for building images
Some images may take a while to build, e.g. if they are large and use slow
compression. Support compiling sections in parallel to speed things up.
Signed-off-by: Simon Glass <[email protected]>
(fixed to use a separate test file to fix flakiness)
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/202_section_timeout.dts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/binman/test/202_section_timeout.dts b/tools/binman/test/202_section_timeout.dts new file mode 100644 index 00000000000..1481450367a --- /dev/null +++ b/tools/binman/test/202_section_timeout.dts @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: GPL-2.0+ + +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + pad-byte = <0x26>; + size = <0x28>; + section@0 { + read-only; + size = <0x10>; + pad-byte = <0x21>; + + u-boot { + }; + }; + }; +}; |
