xref: /openbmc/u-boot/arch/arm/dts/tegra-u-boot.dtsi (revision 15616a0a)
1#include <config.h>
2
3/ {
4	binman {
5		multiple-images;
6		image1 {
7			filename = "u-boot-tegra.bin";
8			pad-byte = <0xff>;
9			u-boot-spl {
10			};
11			u-boot {
12				pos = <(CONFIG_SYS_TEXT_BASE -
13					CONFIG_SPL_TEXT_BASE)>;
14			};
15		};
16
17		/* Same as image1 - some tools still expect the -dtb suffix */
18		image2 {
19			filename = "u-boot-dtb-tegra.bin";
20			pad-byte = <0xff>;
21			u-boot-spl {
22			};
23			u-boot {
24				pos = <(CONFIG_SYS_TEXT_BASE -
25					CONFIG_SPL_TEXT_BASE)>;
26			};
27		};
28
29		image3 {
30			filename = "u-boot-nodtb-tegra.bin";
31			pad-byte = <0xff>;
32			u-boot-spl {
33			};
34			u-boot-nodtb {
35				pos = <(CONFIG_SYS_TEXT_BASE -
36					CONFIG_SPL_TEXT_BASE)>;
37			};
38		};
39	};
40};
41