1config BR2_PACKAGE_PYTHON_PYLIBFTDI 2 bool "python-pylibftdi" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libusb 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libftdi -> libusb 5 select BR2_PACKAGE_LIBFTDI 6 help 7 This package contains the python language binding libftdi. 8 9 https://pypi.python.org/pypi/pylibftdi 10 11comment "python-pylibftdi needs a toolchain w/ threads, gcc >= 4.9" 12 depends on !BR2_TOOLCHAIN_HAS_THREADS || \ 13 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 14