1*4882a593Smuzhiyunconfig BR2_PACKAGE_FIO 2*4882a593Smuzhiyun bool "fio" 3*4882a593Smuzhiyun depends on BR2_USE_MMU # fork() 4*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS 5*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_SYNC_4 7*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS 8*4882a593Smuzhiyun # fio uses fallocate() which becomes fallocate64() while compiling with 9*4882a593Smuzhiyun # largefile support, but fallocate64() is not available on nios2 10*4882a593Smuzhiyun depends on !BR2_nios2 11*4882a593Smuzhiyun help 12*4882a593Smuzhiyun fio is an I/O tool meant to be used both for benchmark 13*4882a593Smuzhiyun and stress/hardware verification. 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun http://git.kernel.dk/?p=fio.git;a=summary 16*4882a593Smuzhiyun 17*4882a593Smuzhiyuncomment "fio needs a toolchain w/ dynamic library, threads, gcc >= 4.9" 18*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \ 19*4882a593Smuzhiyun !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 20*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_SYNC_4 21*4882a593Smuzhiyun depends on !BR2_nios2 22*4882a593Smuzhiyun depends on BR2_USE_MMU 23