Config.in 535 B

12345678910111213141516
  1. config 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. http://dfu-util.sourceforge.net/
  12. comment "dfu-util needs a toolchain w/ threads, gcc >= 4.9"
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9