bootfs-bcm4912.its 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-bcm4912.bin");
  7. };
  8. fdt_uboot {
  9. data = /incbin/("${images_dir}/u-boot/u-boot-bcm4912.dtb");
  10. };
  11. fdt_uboot_GTAX6000 {
  12. description = "dtb";
  13. data = /incbin/("${images_dir}/u-boot/GTAX6000.dtb");
  14. arch = "arm64";
  15. type = "flat_dt";
  16. compression = "none";
  17. hash-1 {
  18. algo = "sha256";
  19. };
  20. };
  21. fdt_linux_GTAX6000 {
  22. description = "dtb";
  23. data = /incbin/("${dts_dir}/broadcom/bcmbca/bcm4912-asus-gt-ax6000.dtb");
  24. arch = "arm64";
  25. type = "flat_dt";
  26. compression = "none";
  27. hash-1 {
  28. algo = "sha256";
  29. };
  30. };
  31. };
  32. configurations {
  33. conf_ub_GTAX6000 {
  34. description = "GTAX6000";
  35. fdt = "fdt_uboot_GTAX6000";
  36. loadables = "atf", "uboot";
  37. };
  38. conf_lx_GTAX6000 {
  39. description = "BRCM 63xxx linux";
  40. kernel = "kernel";
  41. fdt = "fdt_linux_GTAX6000";
  42. };
  43. conf_ub_GTAX6000_50991 {
  44. description = "GTAX6000_50991";
  45. fdt = "fdt_uboot_GTAX6000";
  46. loadables = "atf", "uboot";
  47. };
  48. conf_lx_GTAX6000_50991 {
  49. description = "BRCM 63xxx linux";
  50. kernel = "kernel";
  51. fdt = "fdt_linux_GTAX6000";
  52. };
  53. };
  54. };