bcm4908: start working on Netgear RAXE500 image
[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 kernel {
11 description = "Linux kernel";
12 data = /incbin/("${kernel}");
13 type = "kernel";
14 os = "linux";
15 arch = "arm64";
16 compression = "lzma";
17 load = <0x80000>;
18 entry = <0x80000>;
19
20 hash-1 {
21 algo = "sha256";
22 };
23 };
24
25 fdt_linux_RAX220 {
26 description = "dtb";
27 data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb");
28 arch = "arm64";
29 type = "flat_dt";
30 compression = "none";
31
32 hash-1 {
33 algo = "sha256";
34 };
35 };
36 };
37
38 configurations {
39 conf_lx_RAX220 {
40 description = "BRCM 63xxx linux";
41 kernel = "kernel";
42 fdt = "fdt_linux_RAX220";
43 };
44 };
45 };