mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-25 15:51:27 +02:00
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>
19 lines
198 B
Plaintext
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";
|
|
};
|
|
};
|
|
};
|
|
};
|