190b2b409c
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter l in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
995 B
Plaintext
38 lines
995 B
Plaintext
config BR2_PACKAGE_LIBFTDI1
|
|
bool "libftdi1"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
|
select BR2_PACKAGE_LIBUSB
|
|
help
|
|
Userspace access to FTDI USB interface chips (version 1.x)
|
|
|
|
http://www.intra2net.com/en/developer/libftdi/index.php
|
|
|
|
if BR2_PACKAGE_LIBFTDI1
|
|
|
|
config BR2_PACKAGE_LIBFTDI1_LIBFTDIPP1
|
|
bool "libftdipp1"
|
|
depends on BR2_INSTALL_LIBSTDCPP # boost
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
|
depends on BR2_USE_WCHAR # boost
|
|
select BR2_PACKAGE_BOOST
|
|
help
|
|
C++ bindings for libftdi
|
|
|
|
comment "libftdipp1 needs a toolchain w/ C++, wchar"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
|
|
|
|
config BR2_PACKAGE_LIBFTDI1_PYTHON_BINDINGS
|
|
bool "python bindings"
|
|
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
|
|
help
|
|
Python bindings for libftdi
|
|
|
|
config BR2_PACKAGE_LIBFTDI1_FDTI_EEPROM
|
|
bool "ftdi_eeprom tool"
|
|
select BR2_PACKAGE_LIBCONFUSE
|
|
|
|
endif # BR2_PACKAGE_LIBFTDI1
|
|
|
|
comment "libftdi1 needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|