Config.in 457 B

12345678910111213
  1. config 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. https://pypi.python.org/pypi/pylibftdi
  9. comment "python-pylibftdi needs a toolchain w/ threads, gcc >= 4.9"
  10. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  11. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9