CI: run inside the buildbot docker container
[openwrt/openwrt.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_GTAX6000 {
66 description = "dtb";
67 data = /incbin/("${images_dir}/u-boot/GTAX6000.dtb");
68 type = "flat_dt";
69 compression = "none";
70
71 hash-1 {
72 algo = "sha256";
73 };
74 };
75
76 fdt_uboot_RAX220 {
77 description = "dtb";
78 data = /incbin/("${images_dir}/u-boot/RAX220.dtb");
79 type = "flat_dt";
80 compression = "none";
81
82 hash-1 {
83 algo = "sha256";
84 };
85 };
86
87 fdt_linux_RAX220 {
88 description = "dtb";
89 data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb");
90 arch = "arm64";
91 type = "flat_dt";
92 compression = "none";
93 };
94 };
95
96 configurations {
97 default = "conf_uboot";
98
99 conf_uboot {
100 description = "BRCM 63xxx with uboot";
101 fdt = "fdt_uboot";
102 loadables = "atf", "uboot";
103 };
104
105 conf_ub_GTAX6000 {
106 description = "GTAX6000";
107 fdt = "fdt_GTAX6000";
108 loadables = "atf", "uboot";
109 };
110
111 conf_ub_RAX220 {
112 description = "RAX220";
113 fdt = "fdt_uboot_RAX220";
114 loadables = "atf", "uboot";
115 };
116
117 conf_lx_RAX220 {
118 description = "BRCM 63xxx linux";
119 kernel = "kernel";
120 fdt = "fdt_linux_RAX220";
121 };
122 };
123 };