162_fit_external.dts 1023 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. fit,external-offset = <0>;
  11. description = "test-desc";
  12. #address-cells = <1>;
  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-1 {
  32. description = "Flattened Device Tree blob";
  33. type = "flat_dt";
  34. arch = "ppc";
  35. compression = "none";
  36. hash-1 {
  37. algo = "crc32";
  38. };
  39. hash-2 {
  40. algo = "sha1";
  41. };
  42. _testing {
  43. return-contents-later;
  44. };
  45. };
  46. };
  47. configurations {
  48. default = "conf-1";
  49. conf-1 {
  50. description = "Boot Linux kernel with FDT blob";
  51. kernel = "kernel";
  52. fdt = "fdt-1";
  53. };
  54. };
  55. };
  56. u-boot-nodtb {
  57. };
  58. };
  59. };