summaryrefslogtreecommitdiff
path: root/tools/binman/test/165_section_ignore_hash_signature.dts
blob: 8adbe25512a82414eadf362d6e7998deefaad5d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;

/ {
	#address-cells = <1>;
	#size-cells = <1>;

	binman {
		section@0 {
			u-boot {
			};
			hash {
				algo = "sha256";
			};
			signature {
				algo = "sha256,rsa2048";
				key-name-hint = "dev";
			};
		};
		section@1 {
			u-boot {
			};
			hash-1 {
				algo = "sha1";
			};
			hash-2 {
				algo = "sha256";
			};
			signature-1 {
				algo = "sha1,rsa2048";
				key-name-hint = "dev";
			};
			signature-2 {
				algo = "sha256,rsa2048";
				key-name-hint = "dev";
			};
		};
	};
};