Bump buidlroot version to 2018.02.6
This commit is contained in:
29
bsp/buildroot/package/linux-tools/linux-tool-iio.mk.in
Normal file
29
bsp/buildroot/package/linux-tools/linux-tool-iio.mk.in
Normal file
@@ -0,0 +1,29 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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
|
||||
|
||||
# DESTDIR used since kernel version 4.14
|
||||
define IIO_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/iio \
|
||||
$(IIO_MAKE_OPTS) \
|
||||
INSTALL_ROOT=$(TARGET_DIR) \
|
||||
DESTDIR=$(TARGET_DIR) \
|
||||
install
|
||||
endef
|
||||
Reference in New Issue
Block a user