From patchwork Mon Jan 13 06:56:27 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 309709 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 96E342C009E for ; Mon, 13 Jan 2014 17:56:47 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9D0838B1A3; Mon, 13 Jan 2014 06:56:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id y9ur9aFz3aBs; Mon, 13 Jan 2014 06:56:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4A7128B19B; Mon, 13 Jan 2014 06:56:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D75FC1BFA5D for ; Mon, 13 Jan 2014 06:56:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D51C08B7C3 for ; Mon, 13 Jan 2014 06:56:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1YPo1W9lvUgL for ; Mon, 13 Jan 2014 06:56:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by whitealder.osuosl.org (Postfix) with ESMTP id 0F64F8B6E0 for ; Mon, 13 Jan 2014 06:56:43 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) by mx.tkos.co.il (Postfix) with ESMTPSA id 14586440A0B; Mon, 13 Jan 2014 08:56:42 +0200 (IST) From: Baruch Siach To: buildroot@busybox.net Date: Mon, 13 Jan 2014 08:56:27 +0200 Message-Id: <0255f67e72bc626106163b3cfb821a68d99970fd.1389596187.git.baruch@tkos.co.il> X-Mailer: git-send-email 1.8.5.2 Subject: [Buildroot] [PATCH v2] rt-tests: disable NPTL is missing X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Fixes http://autobuild.buildroot.net/results/8aa/8aaa4b56a53241b7342fede568fbc72a7656cc38/. Signed-off-by: Baruch Siach --- v2: exclude linuxthreads-{old,new} for internal toolchains (Peter Korsgaard) --- package/rt-tests/Config.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in index 36c111bd200c..58a88a8af182 100644 --- a/package/rt-tests/Config.in +++ b/package/rt-tests/Config.in @@ -1,9 +1,10 @@ config BR2_PACKAGE_RT_TESTS bool "rt-tests" depends on BR2_TOOLCHAIN_HAS_THREADS - # Too old uClibc, does not provide priority-inheritance - # mutexes - depends on !BR2_avr32 + # 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 help Set of utilities for testing the real-time behaviour of a Linux system. @@ -23,5 +24,6 @@ config BR2_PACKAGE_RT_TESTS http://rt.wiki.kernel.org comment "rt-tests needs a toolchain w/ threads" - depends on !BR2_avr32 + depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD + depends on !BR2_avr32 && !BR2_xtensa && !BR2_arc depends on !BR2_TOOLCHAIN_HAS_THREADS