Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. config BR2_PACKAGE_DTC
  2. bool "dtc (libfdt)"
  3. depends on !BR2_STATIC_LIBS
  4. help
  5. The Device Tree Compiler, dtc, takes as input a device-tree in
  6. a given format and outputs a device-tree in another format.
  7. Note that only the library is installed.
  8. If you want the programs, say 'y' here, and to "dtc programs",
  9. below.
  10. https://git.kernel.org/cgit/utils/dtc/dtc.git
  11. if BR2_PACKAGE_DTC
  12. config BR2_PACKAGE_DTC_PROGRAMS
  13. bool "dtc programs"
  14. help
  15. Say 'y' here if you also want the programs on the target:
  16. - convert-dtsv0 convert from version 0 to version 1
  17. - dtc the device tree compiler
  18. - dtdiff compare two device trees (needs bash)
  19. - fdtdump print a readable version of a
  20. flat device tree
  21. - fdtget read values from device tree
  22. - fdtput write a property value to a device tree
  23. Note: dtdiff requires bash, so if bash is not selected, dtdiff
  24. will be removed from the target file system. Enable bash if
  25. you need dtdiff on the target.
  26. comment "dtdiff will not be installed: it requires bash"
  27. depends on BR2_PACKAGE_DTC_PROGRAMS
  28. depends on !BR2_PACKAGE_BASH
  29. endif
  30. comment "dtc needs a toolchain w/ dynamic library"
  31. depends on BR2_STATIC_LIBS