All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2] package/linux-tools: add iio
@ 2016-10-04 16:01 Marcin Niestroj
  2016-10-05 17:00 ` Yann E. MORIN
  2016-10-05 20:59 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Marcin Niestroj @ 2016-10-04 16:01 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
---
Changes v1 -> v2:
 * Use LINUX_MAKE_FLAGS instead of directly specifying CROSS_COMPILE
   (suggested by Yann)

 package/linux-tools/Config.in         |  9 +++++++++
 package/linux-tools/linux-tool-iio.mk | 27 +++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)
 create mode 100644 package/linux-tools/linux-tool-iio.mk

diff --git a/package/linux-tools/Config.in b/package/linux-tools/Config.in
index 61c196f..bde70de 100644
--- a/package/linux-tools/Config.in
+++ b/package/linux-tools/Config.in
@@ -20,6 +20,15 @@ comment "cpupower needs a toolchain w/ wchar"
 	depends on !BR2_bfin
 	depends on !BR2_USE_WCHAR && BR2_NEEDS_GETTEXT
 
+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
 	bool "perf"
 	select BR2_PACKAGE_LINUX_TOOLS
diff --git a/package/linux-tools/linux-tool-iio.mk b/package/linux-tools/linux-tool-iio.mk
new file mode 100644
index 0000000..60d6249
--- /dev/null
+++ b/package/linux-tools/linux-tool-iio.mk
@@ -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
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v2] package/linux-tools: add iio
  2016-10-04 16:01 [Buildroot] [PATCH v2] package/linux-tools: add iio Marcin Niestroj
@ 2016-10-05 17:00 ` Yann E. MORIN
  2016-10-05 20:59 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2016-10-05 17:00 UTC (permalink / raw)
  To: buildroot

Marcin, All,

On 2016-10-04 18:01 +0200, Marcin Niestroj spake thusly:
> Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
> Changes v1 -> v2:
>  * Use LINUX_MAKE_FLAGS instead of directly specifying CROSS_COMPILE
>    (suggested by Yann)
> 
>  package/linux-tools/Config.in         |  9 +++++++++
>  package/linux-tools/linux-tool-iio.mk | 27 +++++++++++++++++++++++++++
>  2 files changed, 36 insertions(+)
>  create mode 100644 package/linux-tools/linux-tool-iio.mk
> 
> diff --git a/package/linux-tools/Config.in b/package/linux-tools/Config.in
> index 61c196f..bde70de 100644
> --- a/package/linux-tools/Config.in
> +++ b/package/linux-tools/Config.in
> @@ -20,6 +20,15 @@ comment "cpupower needs a toolchain w/ wchar"
>  	depends on !BR2_bfin
>  	depends on !BR2_USE_WCHAR && BR2_NEEDS_GETTEXT
>  
> +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
>  	bool "perf"
>  	select BR2_PACKAGE_LINUX_TOOLS
> diff --git a/package/linux-tools/linux-tool-iio.mk b/package/linux-tools/linux-tool-iio.mk
> new file mode 100644
> index 0000000..60d6249
> --- /dev/null
> +++ b/package/linux-tools/linux-tool-iio.mk
> @@ -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
> -- 
> 2.10.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH v2] package/linux-tools: add iio
  2016-10-04 16:01 [Buildroot] [PATCH v2] package/linux-tools: add iio Marcin Niestroj
  2016-10-05 17:00 ` Yann E. MORIN
@ 2016-10-05 20:59 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2016-10-05 20:59 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue,  4 Oct 2016 18:01:39 +0200, Marcin Niestroj wrote:
> Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
> ---
> Changes v1 -> v2:
>  * Use LINUX_MAKE_FLAGS instead of directly specifying CROSS_COMPILE
>    (suggested by Yann)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-05 20:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-04 16:01 [Buildroot] [PATCH v2] package/linux-tools: add iio Marcin Niestroj
2016-10-05 17:00 ` Yann E. MORIN
2016-10-05 20:59 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.