066_text.dts 521 B

123456789101112131415161718192021222324252627282930313233
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. text {
  8. size = <8>;
  9. text-label = "test-id";
  10. };
  11. text2 {
  12. type = "text";
  13. text-label = "test-id2";
  14. };
  15. text3 {
  16. type = "text";
  17. text-label = "test-id3";
  18. };
  19. /* This one does not use command-line args */
  20. text4 {
  21. type = "text";
  22. text-label = "test-id4";
  23. test-id4 = "some text";
  24. };
  25. /* Put text directly in the node */
  26. text5 {
  27. type = "text";
  28. text = "more text";
  29. };
  30. };
  31. };