mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
776db4fa96
Adds test units for the pre-load header signature. Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
28 lines
364 B
Text
28 lines
364 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
model = "Sandbox Verified Boot Test";
|
|
compatible = "sandbox";
|
|
|
|
binman {
|
|
};
|
|
|
|
reset@0 {
|
|
compatible = "sandbox,reset";
|
|
};
|
|
|
|
image {
|
|
pre-load {
|
|
sig {
|
|
algo-name = "sha256,rsa2048";
|
|
padding-name = "pss";
|
|
signature-size = <256>;
|
|
mandatory = "yes";
|
|
|
|
key-name = "dev";
|
|
};
|
|
};
|
|
};
|
|
};
|