bcm4908: include ATF in bootfs images
[openwrt/openwrt.git] / target / linux / bcm4908 / image / bootfs-generic.its
index d2f19ed7523f84e09294bef7c96cb6a59c98e9a3..3cde532d7265d029ce6e54f63fef10636858fd96 100644 (file)
@@ -7,6 +7,21 @@
        #address-cells = <1>;
 
        images {
+               atf {
+                       description = "ATF";
+                       data = /incbin/("${images_dir}/bl31.bin");
+                       type = "firmware";
+                       arch = "arm64";
+                       os = "arm-trusted-firmware";
+                       compression = "none";
+                       load = <0x4000>;
+                       entry = <0x4000>;
+
+                       hash-1 {
+                               algo = "sha256";
+                       };
+               };
+
                kernel {
                        description = "Linux kernel";
                        data = /incbin/("${kernel}");
                                algo = "sha256";
                        };
                };
+
+               fdt_linux_RAX220 {
+                       description = "dtb";
+                       data = /incbin/("${dts_dir}/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb");
+                       arch = "arm64";
+                       type = "flat_dt";
+                       compression = "none";
+
+                       hash-1 {
+                               algo = "sha256";
+                       };
+               };
+       };
+
+       configurations {
+               conf_lx_RAX220 {
+                       description = "BRCM 63xxx linux";
+                       kernel = "kernel";
+                       fdt = "fdt_linux_RAX220";
+               };
        };
 };