1config BR2_PACKAGE_DFU_UTIL 2 bool "dfu-util" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb 5 select BR2_PACKAGE_LIBUSB 6 help 7 Dfu-util is the host side implementation of the DFU 1.0 and 8 DFU 1.1 specification of the USB forum. 9 DFU is intended to download and upload firmware to devices 10 connected over USB. 11 12 http://dfu-util.sourceforge.net/ 13 14comment "dfu-util needs a toolchain w/ threads, gcc >= 4.9" 15 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 17