Merge branch 'master' of git://git.denx.de/u-boot-spi
[platform/kernel/u-boot.git] / test / py / tests / vboot / sign-images-sha256-pss.its
1 /dts-v1/;
2
3 / {
4         description = "Chrome OS kernel image with one or more FDT blobs";
5         #address-cells = <1>;
6
7         images {
8                 kernel {
9                         data = /incbin/("test-kernel.bin");
10                         type = "kernel_noload";
11                         arch = "sandbox";
12                         os = "linux";
13                         compression = "none";
14                         load = <0x4>;
15                         entry = <0x8>;
16                         kernel-version = <1>;
17                         signature {
18                                 algo = "sha256,rsa2048";
19                                 padding = "pss";
20                                 key-name-hint = "dev";
21                         };
22                 };
23                 fdt-1 {
24                         description = "snow";
25                         data = /incbin/("sandbox-kernel.dtb");
26                         type = "flat_dt";
27                         arch = "sandbox";
28                         compression = "none";
29                         fdt-version = <1>;
30                         signature {
31                                 algo = "sha256,rsa2048";
32                                 padding = "pss";
33                                 key-name-hint = "dev";
34                         };
35                 };
36         };
37         configurations {
38                 default = "conf-1";
39                 conf-1 {
40                         kernel = "kernel";
41                         fdt = "fdt-1";
42                 };
43         };
44 };