bootfs-bcm4908.its 893 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
  2. /include/ "bootfs.itsi"
  3. / {
  4. images {
  5. uboot {
  6. data = /incbin/("${images_dir}/u-boot/u-boot-bcm4908.bin");
  7. };
  8. fdt_uboot {
  9. data = /incbin/("${images_dir}/u-boot/u-boot-bcm4908.dtb");
  10. };
  11. fdt_uboot_RAX220 {
  12. description = "dtb";
  13. data = /incbin/("${images_dir}/u-boot/RAX220.dtb");
  14. type = "flat_dt";
  15. compression = "none";
  16. hash-1 {
  17. algo = "sha256";
  18. };
  19. };
  20. fdt_linux_RAX220 {
  21. description = "dtb";
  22. data = /incbin/("${dts_dir}/broadcom/bcmbca/bcm4908-netgear-raxe500.dtb");
  23. arch = "arm64";
  24. type = "flat_dt";
  25. compression = "none";
  26. };
  27. };
  28. configurations {
  29. conf_ub_RAX220 {
  30. description = "RAX220";
  31. fdt = "fdt_uboot_RAX220";
  32. loadables = "atf", "uboot";
  33. };
  34. conf_lx_RAX220 {
  35. description = "BRCM 63xxx linux";
  36. kernel = "kernel";
  37. fdt = "fdt_linux_RAX220";
  38. };
  39. };
  40. };