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