1config BR2_PACKAGE_PYTHON_LIBUSB1 2 bool "python-libusb1" 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 Pure-python wrapper for libusb-1.0. 9 10 http://github.com/vpelletier/python-libusb1 11 12comment "python-libusb1 needs a toolchain w/ threads, gcc >= 4.9" 13 depends on BR2_PACKAGE_PYTHON3 14 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 15 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 16