161_fit.dts 970 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. images {
  13. kernel {
  14. description = "Vanilla Linux kernel";
  15. type = "kernel";
  16. arch = "ppc";
  17. os = "linux";
  18. compression = "gzip";
  19. load = <00000000>;
  20. entry = <00000000>;
  21. hash-1 {
  22. algo = "crc32";
  23. };
  24. hash-2 {
  25. algo = "sha1";
  26. };
  27. u-boot {
  28. };
  29. };
  30. fdt-1 {
  31. description = "Flattened Device Tree blob";
  32. type = "flat_dt";
  33. arch = "ppc";
  34. compression = "none";
  35. hash-1 {
  36. algo = "crc32";
  37. };
  38. hash-2 {
  39. algo = "sha1";
  40. };
  41. u-boot-spl-dtb {
  42. };
  43. };
  44. };
  45. configurations {
  46. default = "conf-1";
  47. conf-1 {
  48. description = "Boot Linux kernel with FDT blob";
  49. kernel = "kernel";
  50. fdt = "fdt-1";
  51. };
  52. };
  53. };
  54. u-boot-nodtb {
  55. };
  56. };
  57. };