From patchwork Mon Apr 2 14:15:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markos Chandras X-Patchwork-Id: 150161 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 AEE07B6EE6 for ; Tue, 3 Apr 2012 00:16:40 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id CBFC4101121; Mon, 2 Apr 2012 14:16:38 +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 24+2r8LK65GP; Mon, 2 Apr 2012 14:16:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 50B43100118; Mon, 2 Apr 2012 14:16:36 +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 62FA78F753 for ; Mon, 2 Apr 2012 14:16:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 52AA28B26D for ; Mon, 2 Apr 2012 14:16:35 +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 cqmbIdf7+K8K for ; Mon, 2 Apr 2012 14:16:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from multi.imgtec.com (multi.imgtec.com [194.200.65.239]) by whitealder.osuosl.org (Postfix) with ESMTPS id 42F128B290 for ; Mon, 2 Apr 2012 14:16:32 +0000 (UTC) From: Markos Chandras To: Date: Mon, 2 Apr 2012 15:15:54 +0100 Message-ID: <1333376154-20432-1-git-send-email-markos.chandras@imgtec.com> X-Mailer: git-send-email 1.7.1 X-OriginalArrivalTime: 02 Apr 2012 14:16:28.0415 (UTC) FILETIME=[31DE58F0:01CD10DB] MIME-Version: 1.0 X-SEF-Processed: 7_3_0_01181__2012_04_02_15_16_29 Subject: [Buildroot] [PATCH] rt-tests: Make it available only when NPLT is selected 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net rt-tests package requires some definitions (like PTHREAD_PRIO_INHERIT etc) which are only available in Native Posix Linux Thread implementation. Signed-off-by: Markos Chandras --- package/rt-tests/Config.in | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in index e645266..0043989 100644 --- a/package/rt-tests/Config.in +++ b/package/rt-tests/Config.in @@ -1,3 +1,4 @@ +if BR2_PTHREADS_NATIVE config BR2_PACKAGE_RT_TESTS bool "rt-tests" help @@ -11,3 +12,4 @@ config BR2_PACKAGE_RT_TESTS Buildroot configuration. http://rt.wiki.kernel.org +endif