From patchwork Sun Mar 24 18:19:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 230474 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id C242E2C0089 for ; Mon, 25 Mar 2013 05:20:00 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0BAF58CD86; Sun, 24 Mar 2013 18:19:55 +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 aXnNblt3hZBh; Sun, 24 Mar 2013 18:19:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 605E18CF10; Sun, 24 Mar 2013 18:19:47 +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 8C2DB8F753 for ; Sun, 24 Mar 2013 18:19:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0B4888CDE1 for ; Sun, 24 Mar 2013 18:19:39 +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 h-39fCLVp+uO for ; Sun, 24 Mar 2013 18:19:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by whitealder.osuosl.org (Postfix) with ESMTP id 7EC538CA76 for ; Sun, 24 Mar 2013 18:19:37 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 4B60E864; Sun, 24 Mar 2013 19:19:35 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id 09B0373F for ; Sun, 24 Mar 2013 19:19:34 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sun, 24 Mar 2013 19:19:22 +0100 Message-Id: <1364149170-5521-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1364149170-5521-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1364149170-5521-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 1/9] rt-tests: mention that NPTL thread implementation is needed 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 This patch superseds http://patchwork.ozlabs.org/patch/150161/, but does it in a different way. Since we don't have a way of selecting the thread implementation for external toolchains, and it sounds a bit too heavy to add new config options just for the sake of rt-tests, we instead simply add some help text to the rt-tests package explaining that NPTL thread implementation is needed. Signed-off-by: Thomas Petazzoni --- package/rt-tests/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in index 0999ebf..a040139 100644 --- a/package/rt-tests/Config.in +++ b/package/rt-tests/Config.in @@ -14,6 +14,12 @@ config BR2_PACKAGE_RT_TESTS installed if a Python interpreter has been selected in the Buildroot configuration. + Note that this package requires a toolchain built with the + NPTL implementation of the pthread API (this is always the + case with glibc/eglibc toolchains, but may not necessarily + be the case with uClibc toolchains, since the thread + implementation is configurable). + http://rt.wiki.kernel.org comment "rt-tests requires a toolchain with threads support"