Config.in 463 B

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