199_collection_section.dts 398 B

1234567891011121314151617181920212223242526272829303132
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. collection {
  8. content = <&section &u_boot>;
  9. };
  10. fill {
  11. size = <2>;
  12. fill-byte = [ff];
  13. };
  14. section: section {
  15. u-boot-nodtb {
  16. };
  17. u-boot-dtb {
  18. };
  19. };
  20. fill2 {
  21. type = "fill";
  22. size = <3>;
  23. fill-byte = [fe];
  24. };
  25. u_boot: u-boot {
  26. no-expanded;
  27. };
  28. };
  29. };