142_replace_cbfs.dts 488 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. size = <0xe00>;
  8. allow-repack;
  9. u-boot {
  10. };
  11. section {
  12. align = <0x100>;
  13. cbfs {
  14. size = <0x400>;
  15. u-boot {
  16. cbfs-type = "raw";
  17. };
  18. u-boot-dtb {
  19. cbfs-type = "raw";
  20. cbfs-compress = "lzma";
  21. cbfs-offset = <0x80>;
  22. };
  23. };
  24. u-boot-dtb {
  25. compress = "lz4";
  26. };
  27. };
  28. fdtmap {
  29. };
  30. image-header {
  31. location = "end";
  32. };
  33. };
  34. };