2015-03-08 19:26:02 +08:00
|
|
|
config BR2_PACKAGE_LIBFTDI1
|
|
|
|
bool "libftdi1"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
2020-12-13 23:56:36 +08:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
|
2017-04-23 01:17:58 +08:00
|
|
|
select BR2_PACKAGE_LIBUSB
|
2015-03-08 19:26:02 +08:00
|
|
|
help
|
|
|
|
Userspace access to FTDI USB interface chips (version 1.x)
|
|
|
|
|
|
|
|
http://www.intra2net.com/en/developer/libftdi/index.php
|
|
|
|
|
|
|
|
if BR2_PACKAGE_LIBFTDI1
|
|
|
|
|
2015-05-16 15:29:28 +08:00
|
|
|
config BR2_PACKAGE_LIBFTDI1_LIBFTDIPP1
|
|
|
|
bool "libftdipp1"
|
2015-03-08 19:26:02 +08:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # boost
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
2015-07-24 16:14:53 +08:00
|
|
|
depends on BR2_USE_WCHAR # boost
|
2017-04-23 01:17:58 +08:00
|
|
|
select BR2_PACKAGE_BOOST
|
2015-03-08 19:26:02 +08:00
|
|
|
help
|
|
|
|
C++ bindings for libftdi
|
|
|
|
|
2015-07-24 16:14:53 +08:00
|
|
|
comment "libftdipp1 needs a toolchain w/ C++, wchar"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
|
2015-03-08 19:26:02 +08:00
|
|
|
|
2015-05-16 15:29:28 +08:00
|
|
|
config BR2_PACKAGE_LIBFTDI1_PYTHON_BINDINGS
|
2015-03-08 19:26:02 +08:00
|
|
|
bool "python bindings"
|
|
|
|
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
|
|
|
|
help
|
|
|
|
Python bindings for libftdi
|
|
|
|
|
2015-05-16 15:29:28 +08:00
|
|
|
config BR2_PACKAGE_LIBFTDI1_FDTI_EEPROM
|
2015-03-08 19:26:02 +08:00
|
|
|
bool "ftdi_eeprom tool"
|
2017-04-23 01:17:58 +08:00
|
|
|
select BR2_PACKAGE_LIBCONFUSE
|
2015-03-08 19:26:02 +08:00
|
|
|
|
|
|
|
endif # BR2_PACKAGE_LIBFTDI1
|
|
|
|
|
2020-12-13 23:56:36 +08:00
|
|
|
comment "libftdi1 needs a toolchain w/ threads, gcc >= 4.9"
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|