168_fit_missing_blob.dts 723 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 = "ATF BL31";
  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. atf-bl31 {
  29. filename = "missing";
  30. };
  31. cros-ec-rw {
  32. type = "atf-bl31";
  33. missing-msg = "wibble";
  34. };
  35. another {
  36. type = "atf-bl31";
  37. };
  38. };
  39. };
  40. };
  41. u-boot-nodtb {
  42. };
  43. };
  44. };