Files
u-boot/tools/binman/test/184_compress_section_size.dts
Jiaxun Yang 2b5ae10acb binman: Workaround lz4 cli padding in test cases
Newer lz4 util is not happy with any padding at end of file,
it would abort with error message like:

Stream followed by undecodable data at position 43.

Workaround by skipping testCompUtilPadding test case and manually
strip padding in testCompressSectionSize test case.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
2025-03-04 12:29:50 -07:00

19 lines
209 B
Plaintext

// SPDX-License-Identifier: GPL-2.0+
/dts-v1/;
/ {
binman {
section {
size = <0x30>;
compress = "lz4";
pad-byte = <0xff>;
blob {
filename = "compress";
};
u-boot {
};
};
};
};