bootfs.itsi 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
  2. /dts-v1/;
  3. / {
  4. description = "OpenWrt bootfs image";
  5. #address-cells = <1>;
  6. images {
  7. atf {
  8. description = "ATF";
  9. data = /incbin/("${images_dir}/bl31.bin");
  10. type = "firmware";
  11. arch = "arm64";
  12. os = "arm-trusted-firmware";
  13. compression = "none";
  14. load = <0x4000>;
  15. entry = <0x4000>;
  16. hash-1 {
  17. algo = "sha256";
  18. };
  19. };
  20. uboot {
  21. description = "U-Boot";
  22. os = "U-Boot";
  23. arch = "arm64";
  24. compression = "none";
  25. load = <0x1000000>;
  26. entry = <0x1000000>;
  27. hash-1 {
  28. algo = "sha256";
  29. };
  30. };
  31. kernel {
  32. description = "Linux kernel";
  33. data = /incbin/("${kernel}");
  34. type = "kernel";
  35. os = "linux";
  36. arch = "arm64";
  37. compression = "lzma";
  38. load = <0x80000>;
  39. entry = <0x80000>;
  40. hash-1 {
  41. algo = "sha256";
  42. };
  43. };
  44. fdt_uboot {
  45. description = "dtb";
  46. type = "flat_dt";
  47. compression = "none";
  48. hash-1 {
  49. algo = "sha256";
  50. };
  51. };
  52. };
  53. configurations {
  54. default = "conf_uboot";
  55. conf_uboot {
  56. description = "BRCM 63xxx with uboot";
  57. fdt = "fdt_uboot";
  58. loadables = "atf", "uboot";
  59. };
  60. };
  61. };