From patchwork Sat Jul 20 12:52:08 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 260442 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 1CE582C0091 for ; Sat, 20 Jul 2013 22:52:39 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id CEE6031B31; Sat, 20 Jul 2013 12:52:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YbFcMLnSSsbn; Sat, 20 Jul 2013 12:52:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 22A832053D; Sat, 20 Jul 2013 12:52:37 +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 F420F1BF86F for ; Sat, 20 Jul 2013 12:52:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1DCE98D970 for ; Sat, 20 Jul 2013 12:52:36 +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 Rp7+Eqkh5HNJ for ; Sat, 20 Jul 2013 12:52:35 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 6E7208D8ED for ; Sat, 20 Jul 2013 12:52:35 +0000 (UTC) Received: from asgard (host231.190-138-230.telecom.net.ar [190.138.230.231]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r6KCqSaI009958 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 20 Jul 2013 12:52:31 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1374324753; bh=Sgc5XTB9kByN0lPfHM2W2K/zpV5M1dul34d1o+RtD5o=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Vy6oe2PlFk3OxahogL/Yc+UftZa5OTb+YiNBa3muPpdQcTpVYqlDSVIaCnSQw5ko2 2qF9+476jegycHN/KPAwftyb3paO0X4i2J0ZzdFC3McCIH6zKZBBTzjr2urvCqsZbQ he0QM4COsBkBAC6fBEeHChaPRmM4CURdszZbGOSc= Received: by asgard (sSMTP sendmail emulation); Sat, 20 Jul 2013 09:52:27 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 20 Jul 2013 09:52:08 -0300 Message-Id: <1374324735-2286-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1374324735-2286-1-git-send-email-gustavo@zacarias.com.ar> References: <1374324735-2286-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/9] uclibc/bfin: only supports linuxthreads.old 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 Signed-off-by: Gustavo Zacarias --- package/uclibc/Config.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/uclibc/Config.in b/package/uclibc/Config.in index 90aae90..f9c4956 100644 --- a/package/uclibc/Config.in +++ b/package/uclibc/Config.in @@ -104,6 +104,7 @@ choice config BR2_PTHREADS bool "linuxthreads" + depends on !BR2_bfin depends on !BR2_xtensa select BR2_TOOLCHAIN_HAS_THREADS @@ -115,9 +116,10 @@ choice bool "Native POSIX Threading (NPTL)" select BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_x86_i386 + depends on !BR2_arc depends on !BR2_avr32 + depends on !BR2_bfin depends on !BR2_xtensa - depends on !BR2_arc endchoice config BR2_PTHREAD_DEBUG