105_cbfs_raw_compress.dts 428 B

1234567891011121314151617181920212223242526
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. cbfs {
  8. size = <0x140>;
  9. u-boot {
  10. type = "text";
  11. text = "compress xxxxxxxxxxxxxxxxxxxxxx data";
  12. cbfs-type = "raw";
  13. cbfs-compress = "lz4";
  14. };
  15. u-boot-dtb {
  16. type = "text";
  17. text = "compress xxxxxxxxxxxxxxxxxxxxxx data";
  18. cbfs-type = "raw";
  19. cbfs-compress = "lzma";
  20. };
  21. };
  22. };
  23. };