8cc3267384
Libiio is a library to ease the development of software interfacing Linux Industrial I/O (IIO) devices. http://wiki.analog.com/resources/tools-software/linux-software/libiio [Thomas: - Remove changelog from the commit log. - Rename init script to S99iiod instead of S99iiod.sh - Remove "status" command from init script, and implement "restart" instead. - Add dependency on thread support in toolchain. - Fixup indentation in the .mk file. - Fixup wrapping in the Config.in help text.] Signed-off-by: Paul Cercueil <paul.cercueil@analog.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_LIBIIO
|
|
bool "libiio"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND if !BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
|
|
help
|
|
Libiio is a library to ease the development of software
|
|
interfacing Linux Industrial I/O (IIO) devices.
|
|
|
|
http://wiki.analog.com/resources/tools-software/linux-software/libiio
|
|
|
|
if BR2_PACKAGE_LIBIIO
|
|
|
|
config BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
|
|
bool "Local backend"
|
|
default y
|
|
help
|
|
Enable the local backend of the library.
|
|
|
|
config BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
|
|
bool "Network backend"
|
|
select BR2_PACKAGE_LIBXML2
|
|
default y
|
|
help
|
|
Enable the network backend of the library.
|
|
|
|
config BR2_PACKAGE_LIBIIO_IIOD
|
|
bool "IIO Daemon"
|
|
select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
default y
|
|
help
|
|
Install the IIO Daemon.
|
|
|
|
comment "IIO Daemon needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_LIBIIO_TESTS
|
|
bool "Install test programs"
|
|
select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
|
|
select BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
|
|
help
|
|
Install the test programs (iio_info, iio_genxml, iio_readdev).
|
|
|
|
endif
|
|
|
|
comment "libiio needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|