170_fit_fdt.dts 879 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. u-boot {
  8. };
  9. fit {
  10. description = "test-desc";
  11. #address-cells = <1>;
  12. fit,fdt-list = "of-list";
  13. images {
  14. kernel {
  15. description = "Vanilla Linux kernel";
  16. type = "kernel";
  17. arch = "ppc";
  18. os = "linux";
  19. compression = "gzip";
  20. load = <00000000>;
  21. entry = <00000000>;
  22. hash-1 {
  23. algo = "crc32";
  24. };
  25. hash-2 {
  26. algo = "sha1";
  27. };
  28. u-boot {
  29. };
  30. };
  31. @fdt-SEQ {
  32. description = "fdt-NAME.dtb";
  33. type = "flat_dt";
  34. compression = "none";
  35. };
  36. };
  37. configurations {
  38. default = "@config-DEFAULT-SEQ";
  39. @config-SEQ {
  40. description = "conf-NAME.dtb";
  41. firmware = "uboot";
  42. loadables = "atf";
  43. fdt = "fdt-SEQ";
  44. };
  45. };
  46. };
  47. u-boot-nodtb {
  48. };
  49. };
  50. };