aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/test/77_vblock_bad_entry.dts
blob: 764c42a56e14f938a826f5239e9992236d7785f3 (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
// SPDX-License-Identifier: GPL-2.0+
/dts-v1/;

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

	binman {
		u_boot: u-boot {
		};

		vblock {
			content = <&u_boot &other>;
			keyblock = "firmware.keyblock";
			signprivate = "firmware_data_key.vbprivk";
			version = <1>;
			kernelkey = "kernel_subkey.vbpubk";
			preamble-flags = <1>;
		};

		dtb: u-boot-dtb {
		};
	};

	other: other {
	};
};