diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-08-15 06:20:04 +0200 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-08-15 18:05:08 +0200 |
commit | 95e8c5eb6f15712ce0f40dbc0f806a95f40d3b95 (patch) | |
tree | e5c890477ee7352613b60e135325b04da0f6fd04 | |
parent | c5299a7dd02a1ba74b6e089a428d0de720091e17 (diff) | |
download | buildroot-95e8c5eb6f15712ce0f40dbc0f806a95f40d3b95.tar.gz buildroot-95e8c5eb6f15712ce0f40dbc0f806a95f40d3b95.zip |
package/mtd: test programs need threads
The test programs depend on pthreads:
http://git.infradead.org/mtd-utils.git/blob/1bfee8660131fca7a18f68e9548a18ca6b3378a0:/configure.ac#l43
Also propagate the threads dependency to BR2_PACKAGE_MTD_INTEGCK.
Fixes
http://autobuild.buildroot.net/results/879/879c79e505f65387a46c4be263dc8783c8ca61bf/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Arnout: add depends on BR2_USE_MMU to comment]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rw-r--r-- | package/mtd/Config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/mtd/Config.in b/package/mtd/Config.in index a1df4cfc0a..37e4b4ab1b 100644 --- a/package/mtd/Config.in +++ b/package/mtd/Config.in @@ -24,6 +24,7 @@ config BR2_PACKAGE_MTD_UBIFS_UTILS config BR2_PACKAGE_MTD_TESTS bool + depends on BR2_TOOLCHAIN_HAS_THREADS comment "MTD tools selection" @@ -174,9 +175,14 @@ config BR2_PACKAGE_MTD_UBIBLOCK config BR2_PACKAGE_MTD_INTEGCK bool "integck" + depends on BR2_TOOLCHAIN_HAS_THREADS # mtd-tests depends on BR2_USE_MMU # fork() select BR2_PACKAGE_MTD_TESTS help Install the integck test program. +comment "integck needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_USE_MMU + endif |