127_list.dts 494 B

123456789101112131415161718192021222324252627282930313233
  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. section {
  10. align = <0x100>;
  11. cbfs {
  12. size = <0x400>;
  13. u-boot {
  14. cbfs-type = "raw";
  15. cbfs-offset = <0x38>;
  16. };
  17. u-boot-dtb {
  18. type = "text";
  19. text = "compress xxxxxxxxxxxxxxxxxxxxxx data";
  20. cbfs-type = "raw";
  21. cbfs-compress = "lzma";
  22. cbfs-offset = <0x78>;
  23. };
  24. };
  25. u-boot-dtb {
  26. compress = "lz4";
  27. };
  28. };
  29. };
  30. };