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		u-boot {
11		};
12		section {
13			align = <0x100>;
14			cbfs {
15				size = <0x400>;
16				u-boot {
17					cbfs-type = "raw";
18					cbfs-offset = <0x38>;
19				};
20				u-boot-dtb {
21					type = "text";
22					text = "compress xxxxxxxxxxxxxxxxxxxxxx data";
23					cbfs-type = "raw";
24					cbfs-compress = "lzma";
25					cbfs-offset = <0x78>;
26				};
27			};
28			u-boot-dtb {
29				compress = "lz4";
30			};
31		};
32	};
33};
34