mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
b1c5093008
Adds the support of the pre-load header with the image signature to binman. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
23 lines
377 B
Text
23 lines
377 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
pre-load {
|
|
content = <&image>;
|
|
algo-name = "sha256,rsa2048";
|
|
padding-name = "pkcs-1.5";
|
|
key-name = "tools/binman/test/225_dev.key";
|
|
header-size = <4096>;
|
|
version = <0x11223344>;
|
|
};
|
|
|
|
image: blob-ext {
|
|
filename = "refcode.bin";
|
|
};
|
|
};
|
|
};
|