diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-12-09 08:13:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-09 21:52:44 +0100 |
commit | 3c2a5ba33edd710ce58e56f81214699e56dca233 (patch) | |
tree | adea06149d3602cc522a65101e3208b654d84eb1 /package | |
parent | 28acda4b63e9ef4d1203765c83117ffabb5750e0 (diff) | |
download | buildroot-novena-3c2a5ba33edd710ce58e56f81214699e56dca233.tar.gz buildroot-novena-3c2a5ba33edd710ce58e56f81214699e56dca233.zip |
rt-tests: requires thread support in the toolchain
The rt-tests package extensively use threads, so this package should
only be available if the toolchain has thread support.
[Peter: add comment when not available]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/rt-tests/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in index e6452668c..5c8a78278 100644 --- a/package/rt-tests/Config.in +++ b/package/rt-tests/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_RT_TESTS bool "rt-tests" + depends on BR2_TOOLCHAIN_HAS_THREADS help Set of utilities for testing the real-time behaviour of a Linux system. @@ -11,3 +12,6 @@ config BR2_PACKAGE_RT_TESTS Buildroot configuration. http://rt.wiki.kernel.org + +comment "rt-tests requires a toolchain with threads support" + !BR2_TOOLCHAIN_HAS_THREADS |