mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 21:26:36 +00:00
package/linux-tools: add iio
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
6d2335305c
commit
3afc4de882
@ -32,6 +32,15 @@ config BR2_PACKAGE_LINUX_TOOLS_GPIO
|
|||||||
|
|
||||||
These tools are available only from kernel version 4.8.
|
These tools are available only from kernel version 4.8.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LINUX_TOOLS_IIO
|
||||||
|
bool "iio"
|
||||||
|
select BR2_PACKAGE_LINUX_TOOLS
|
||||||
|
help
|
||||||
|
iio is a collection of tools to get information about,
|
||||||
|
control and monitor iio devices present on system.
|
||||||
|
|
||||||
|
These tools are available only from kernel version 4.7.
|
||||||
|
|
||||||
config BR2_PACKAGE_LINUX_TOOLS_PERF
|
config BR2_PACKAGE_LINUX_TOOLS_PERF
|
||||||
bool "perf"
|
bool "perf"
|
||||||
select BR2_PACKAGE_LINUX_TOOLS
|
select BR2_PACKAGE_LINUX_TOOLS
|
||||||
|
27
package/linux-tools/linux-tool-iio.mk
Normal file
27
package/linux-tools/linux-tool-iio.mk
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# iio
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
LINUX_TOOLS += iio
|
||||||
|
|
||||||
|
IIO_MAKE_OPTS = $(LINUX_MAKE_FLAGS)
|
||||||
|
|
||||||
|
define IIO_BUILD_CMDS
|
||||||
|
$(Q)if ! grep install $(LINUX_DIR)/tools/iio/Makefile >/dev/null 2>&1 ; then \
|
||||||
|
echo "Your kernel version is too old and does not have install section in the iio tools." ; \
|
||||||
|
echo "At least kernel 4.7 must be used." ; \
|
||||||
|
exit 1 ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/iio \
|
||||||
|
$(IIO_MAKE_OPTS)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define IIO_INSTALL_TARGET_CMDS
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/iio \
|
||||||
|
$(IIO_MAKE_OPTS) \
|
||||||
|
INSTALL_ROOT=$(TARGET_DIR) \
|
||||||
|
install
|
||||||
|
endef
|
Loading…
x
Reference in New Issue
Block a user