diff options
author | Paul Cercueil <paul.cercueil@analog.com> | 2016-08-29 11:25:23 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-08-29 17:54:07 +0200 |
commit | 53996bee433f09a91b12aa53b2be0f7d22c0acbe (patch) | |
tree | f5b2b844cde8ade8f20844cb216fad221f7c554e | |
parent | 07552de23b95b48412be89ca5c162d8855872206 (diff) | |
download | buildroot-53996bee433f09a91b12aa53b2be0f7d22c0acbe.tar.gz buildroot-53996bee433f09a91b12aa53b2be0f7d22c0acbe.zip |
libiio: Disable IIOD on Blackfin
IIOD uses accept4, which is not yet available on Blackfin.
Fixes:
http://autobuild.buildroot.net/results/b75/b7552c9325ffcc7f1cb6e114b82648f3280fded6/
[Peter: hide other toolchain comment on bfin]
Signed-off-by: Paul Cercueil <paul.cercueil@analog.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libiio/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/libiio/Config.in b/package/libiio/Config.in index 69269e0d6a..2e7a76d8c8 100644 --- a/package/libiio/Config.in +++ b/package/libiio/Config.in @@ -53,12 +53,17 @@ 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. comment "IIO Daemon needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_bfin + +comment "IIO Daemon is not yet available on Blackfin" + depends on BR2_bfin config BR2_PACKAGE_LIBIIO_TESTS bool "Install test programs" |