blob: c200f2d3a0be85c800b7d771e70e3775945cddf0 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include <config.h>
#ifdef CONFIG_SPL_TEXT_BASE
#define U_BOOT_OFFSET (CONFIG_TEXT_BASE - CONFIG_SPL_TEXT_BASE)
#else
#define U_BOOT_OFFSET 0
#endif
/ {
binman {
multiple-images;
image1 {
filename = "u-boot-tegra.bin";
pad-byte = <0xff>;
u-boot-spl {
};
u-boot {
offset = <(U_BOOT_OFFSET)>;
};
};
#ifdef CONFIG_MULTI_DTB_FIT
image2 {
filename = "u-boot-dtb-tegra.bin";
pad-byte = <0xff>;
u-boot-spl {
};
u-boot-nodtb {
offset = <(U_BOOT_OFFSET)>;
};
fit-dtb {
#ifdef CONFIG_MULTI_DTB_FIT_LZO
filename = "fit-dtb.blob.lzo";
#elif CONFIG_MULTI_DTB_FIT_GZIP
filename = "fit-dtb.blob.gz";
#else
filename = "fit-dtb.blob";
#endif
type = "blob";
};
};
#else
/* Same as image1 - some tools still expect the -dtb suffix */
image2 {
filename = "u-boot-dtb-tegra.bin";
pad-byte = <0xff>;
u-boot-spl {
};
u-boot {
offset = <(U_BOOT_OFFSET)>;
};
};
#endif
image3 {
filename = "u-boot-nodtb-tegra.bin";
pad-byte = <0xff>;
u-boot-spl {
};
u-boot-nodtb {
offset = <(U_BOOT_OFFSET)>;
};
};
};
};
|