1config BR2_PACKAGE_DC3DD 2 bool "dc3dd" 3 depends on !BR2_RISCV_32 4 depends on !BR2_arc 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 depends on !BR2_TOOLCHAIN_USES_MUSL 7 help 8 dc3dd is a patch to the GNU dd program, this version has 9 several features intended for forensic acquisition of data. 10 Highlights include hashing on-the-fly, split output files, 11 pattern writing, a progress meter, and file verification. 12 13 https://sourceforge.net/projects/dc3dd/ 14 15comment "dc3dd needs a glibc or uClibc toolchain w/ threads" 16 depends on !BR2_RISCV_32 17 depends on !BR2_arc 18 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 19 BR2_TOOLCHAIN_USES_MUSL 20