bcm4908: include U-Boot in images
[openwrt/staging/dangole.git] / target / linux / bcm4908 / image / bootfs-generic.its
1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2
3 /dts-v1/;
4
5 / {
6 description = "OpenWrt bootfs image";
7 #address-cells = <1>;
8
9 images {
10 atf {
11 description = "ATF";
12 data = /incbin/("${images_dir}/bl31.bin");
13 type = "firmware";
14 arch = "arm64";
15 os = "arm-trusted-firmware";
16 compression = "none";
17 load = <0x4000>;
18 entry = <0x4000>;
19
20 hash-1 {
21 algo = "sha256";
22 };
23 };
24
25 uboot {
26 description = "U-Boot";
27 data = /incbin/("${images_dir}/u-boot/u-boot-nodtb.bin");
28 os = "U-Boot";
29 arch = "arm64";
30 compression = "none";
31 load = <0x1000000>;
32 entry = <0x1000000>;
33
34 hash-1 {
35 algo = "sha256";
36 };
37 };
38
39 kernel {
40 description = "Linux kernel";
41 data = /incbin/("${kernel}");
42 type = "kernel";
43 os = "linux";
44 arch = "arm64";
45 compression = "lzma";
46 load = <0x80000>;
47 entry = <0x80000>;
48
49 hash-1 {
50 algo = "sha256";
51 };
52 };
53
54 fdt_uboot {
55 description = "dtb";
56 data = /incbin/("${images_dir}/u-boot/u-boot.dtb");
57 type = "flat_dt";
58 compression = "none";
59
60 hash-1 {
61 algo = "sha256";
62 };
63 };
64
65 fdt_linux_RAX220 {
66 description = "dtb";
67 data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb");
68 arch = "arm64";
69 type = "flat_dt";
70 compression = "none";
71 };
72 };
73
74 configurations {
75 default = "conf_uboot";
76
77 conf_uboot {
78 description = "BRCM 63xxx with uboot";
79 fdt = "fdt_uboot";
80 loadables = "atf", "uboot";
81 };
82
83 conf_lx_RAX220 {
84 description = "BRCM 63xxx linux";
85 kernel = "kernel";
86 fdt = "fdt_linux_RAX220";
87 };
88 };
89 };