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