Merge tag 'xilinx-for-v2021.01' of https://gitlab.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / tools / binman / test / 165_section_ignore_hash_signature.dts
1 // SPDX-License-Identifier: GPL-2.0+
2
3 /dts-v1/;
4
5 / {
6         #address-cells = <1>;
7         #size-cells = <1>;
8
9         binman {
10                 section@0 {
11                         u-boot {
12                         };
13                         hash {
14                                 algo = "sha256";
15                         };
16                         signature {
17                                 algo = "sha256,rsa2048";
18                                 key-name-hint = "dev";
19                         };
20                 };
21                 section@1 {
22                         u-boot {
23                         };
24                         hash-1 {
25                                 algo = "sha1";
26                         };
27                         hash-2 {
28                                 algo = "sha256";
29                         };
30                         signature-1 {
31                                 algo = "sha1,rsa2048";
32                                 key-name-hint = "dev";
33                         };
34                         signature-2 {
35                                 algo = "sha256,rsa2048";
36                                 key-name-hint = "dev";
37                         };
38                 };
39         };
40 };