diff options
| author | Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be> | 2018-01-04 11:10:51 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2018-01-06 15:29:53 +0100 |
| commit | 9f2ced651ba50c72d988b635cd883fd3f291b608 (patch) | |
| tree | aee70c2f03e0a4f7f87257bf520cf2bc511de571 | |
| parent | 60f492040aa6f0c5d50acb0cb315c111065ac307 (diff) | |
| download | buildroot-9f2ced651ba50c72d988b635cd883fd3f291b608.tar.gz buildroot-9f2ced651ba50c72d988b635cd883fd3f291b608.zip | |
nilfs-utils: need NPTL threads
nilfs-utils use clock_nanosleep(), which comes with NPTL threads. We
keep the dependency on threads, because sem_open() is really related
to thread support. The dependency on NPTL for clock_nanosleep() might
be lifted in the future, as it seems to be a bug in uClibc-ng.
Signed-off-by: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>
[Thomas: update Config.in comment.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/nilfs-utils/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/nilfs-utils/Config.in b/package/nilfs-utils/Config.in index 0c6b7a0ce8..e49cab369b 100644 --- a/package/nilfs-utils/Config.in +++ b/package/nilfs-utils/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_NILFS_UTILS bool "nilfs-utils" depends on BR2_TOOLCHAIN_HAS_THREADS # sem_open() + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # clock_nanosleep() depends on BR2_USE_MMU # util-linux libmount, libblkid select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_UTIL_LINUX_LIBBLKID @@ -11,5 +12,6 @@ config BR2_PACKAGE_NILFS_UTILS https://github.com/nilfs-dev/nilfs-utils -comment "nilfs-utils needs a toolchain w/ threads" - depends on !BR2_TOOLCHAIN_HAS_THREADS +comment "nilfs-utils needs a toolchain w/ threads, NPTL" + depends on !BR2_TOOLCHAIN_HAS_THREADS || \ + !BR2_TOOLCHAIN_HAS_THREADS_NPTL |

