Config.in 495 B

123456789101112131415
  1. config BR2_PACKAGE_PYTHON_PYUSB
  2. bool "python-pyusb"
  3. depends on BR2_PACKAGE_PYTHON3
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  6. select BR2_PACKAGE_LIBUSB
  7. help
  8. The PyUSB module provides easy access to the Universal
  9. Serial Bus (USB) from Python.
  10. http://sourceforge.net/apps/trac/pyusb/
  11. comment "python-pyusb needs a toolchain w/ threads, gcc >= 4.9"
  12. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  13. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9