aboutsummaryrefslogtreecommitdiff
path: root/target/linux/bcm4908/image/bootfs-bcm4908.its
blob: d5ac21fd6a44f2f303c3e9a4cea4e99e54cbdff1 (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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

/include/ "bootfs.itsi"

/ {
	images {
		uboot {
			data = /incbin/("${images_dir}/u-boot/u-boot-bcm4908.bin");
		};

		fdt_uboot {
			data = /incbin/("${images_dir}/u-boot/u-boot-bcm4908.dtb");
		};

		fdt_uboot_RAX220 {
			description = "dtb";
			data = /incbin/("${images_dir}/u-boot/RAX220.dtb");
			type = "flat_dt";
			compression = "none";

			hash-1 {
				algo = "sha256";
			};
		};

		fdt_linux_RAX220 {
			description = "dtb";
			data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb");
			arch = "arm64";
			type = "flat_dt";
			compression = "none";
		};
	};

	configurations {
		conf_ub_RAX220 {
			description = "RAX220";
			fdt = "fdt_uboot_RAX220";
			loadables = "atf", "uboot";
		};

		conf_lx_RAX220 {
			description = "BRCM 63xxx linux";
			kernel = "kernel";
			fdt = "fdt_linux_RAX220";
		};
	};
};