Config.in 837 B

123456789101112131415161718192021
  1. comment "dt needs a glibc or uClibc toolchain w/ threads"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL
  4. config BR2_PACKAGE_DT
  5. bool "dt"
  6. depends on BR2_USE_MMU # fork()
  7. depends on BR2_TOOLCHAIN_HAS_THREADS
  8. # Build fails because of several BSDisms
  9. depends on !BR2_TOOLCHAIN_USES_MUSL
  10. help
  11. dt is a generic data test program used to verify proper
  12. operation of peripherals, file systems, device drivers,
  13. or any data stream supported by the operating system.
  14. In its' simplest mode of operation, dt writes and then
  15. verifys its' default data pattern, then displays
  16. performance statisics and other test parameters
  17. before exiting. Since verification of data is performed,
  18. dt can be thought of as a generic diagnostic tool.
  19. http://www.scsifaq.org/RMiller_Tools/dt.html