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		fit {
11			description = "test-desc";
12			#address-cells = <1>;
13			fit,fdt-list = "of-list";
14
15			images {
16				@tee-SEQ {
17					fit,operation = "split-elf";
18					description = "TEE";
19					type = "tee";
20					arch = "arm64";
21					os = "tee";
22					compression = "none";
23					fit,load;
24					fit,entry;
25					fit,data;
26
27					tee-os {
28					};
29
30					/*
31					 * mess up the ELF data by adding
32					 * another bit of data at the end
33					 */
34					u-boot {
35					};
36				};
37			};
38		};
39	};
40};
41