diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-02-18 22:09:01 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-22 23:40:16 +0100 |
commit | fe061a9898369389cabca340ce00fd62b0e8481d (patch) | |
tree | 6fa39867acdb1a1b9f5c2085eda348f6e02374ce | |
parent | 7586be4aae3ab93badcfad2ccbd434f2e7885f11 (diff) | |
download | buildroot-fe061a9898369389cabca340ce00fd62b0e8481d.tar.gz buildroot-fe061a9898369389cabca340ce00fd62b0e8481d.zip |
rt-tests: use BR2_TOOLCHAIN_HAS_THREADS_NPTL
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/rt-tests/Config.in | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in index 58a88a8af1..461e6de6e8 100644 --- a/package/rt-tests/Config.in +++ b/package/rt-tests/Config.in @@ -1,10 +1,6 @@ config BR2_PACKAGE_RT_TESTS bool "rt-tests" - depends on BR2_TOOLCHAIN_HAS_THREADS - # priority-inheritance mutex needs NPTL - depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD - # no NPTL for these archs - depends on !BR2_avr32 && !BR2_xtensa && !BR2_arc + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL help Set of utilities for testing the real-time behaviour of a Linux system. @@ -23,7 +19,5 @@ config BR2_PACKAGE_RT_TESTS http://rt.wiki.kernel.org -comment "rt-tests needs a toolchain w/ threads" - depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD - depends on !BR2_avr32 && !BR2_xtensa && !BR2_arc - depends on !BR2_TOOLCHAIN_HAS_THREADS +comment "rt-tests needs a toolchain w/ NPTL" + depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL |