u-boot-brain/tools/binman/test/99_hash_section.dts
Simon Glass e0e5df9310 binman: Support hashing entries
Sometimesi it us useful to be able to verify the content of entries with
a hash. Add an easy way to do this in binman. The hash information can be
retrieved from the device tree at run time.

Signed-off-by: Simon Glass <sjg@chromium.org>
2018-09-29 11:49:35 -06:00

19 lines
198 B
Plaintext

// SPDX-License-Identifier: GPL-2.0+
/dts-v1/;
/ {
binman {
section {
u-boot {
};
fill {
size = <0x10>;
fill-byte = [61];
};
hash {
algo = "sha256";
};
};
};
};