[Buildroot] [PATCH] libiio: Disable IIOD on Blackfin

Paul Cercueil paul.cercueil at analog.com
Mon Aug 29 09:25:23 UTC 2016


IIOD uses accept4, which is not yet available on Blackfin.

Fixes:
 http://autobuild.buildroot.net/results/b75/b7552c9325ffcc7f1cb6e114b82648f3280fded6/

Signed-off-by: Paul Cercueil <paul.cercueil at analog.com>
---
 package/libiio/Config.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/libiio/Config.in b/package/libiio/Config.in
index 69269e0..6f35715 100644
--- a/package/libiio/Config.in
+++ b/package/libiio/Config.in
@@ -53,6 +53,7 @@ config BR2_PACKAGE_LIBIIO_IIOD
 	bool "IIO Daemon"
 	select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_bfin
 	default y
 	help
 	  Install the IIO Daemon.
@@ -60,6 +61,9 @@ config BR2_PACKAGE_LIBIIO_IIOD
 comment "IIO Daemon needs a toolchain w/ threads"
 	depends on !BR2_TOOLCHAIN_HAS_THREADS
 
+comment "IIO Daemon is not yet available on Blackfin"
+	depends on BR2_bfin
+
 config BR2_PACKAGE_LIBIIO_TESTS
 	bool "Install test programs"
 	select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
-- 
2.8.1



More information about the buildroot mailing list