186_compress_extra.dts 463 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. binman {
  5. u-boot {
  6. };
  7. base {
  8. type = "section";
  9. u-boot {
  10. };
  11. section {
  12. compress = "lz4";
  13. blob {
  14. filename = "compress";
  15. };
  16. u-boot {
  17. };
  18. };
  19. section2 {
  20. type = "section";
  21. compress = "lz4";
  22. blob {
  23. filename = "compress";
  24. };
  25. blob2 {
  26. type = "blob";
  27. filename = "compress";
  28. };
  29. };
  30. u-boot2 {
  31. type = "u-boot";
  32. };
  33. };
  34. };
  35. };