From patchwork Mon May 14 07:50:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 158903 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 4E4A2B7002 for ; Mon, 14 May 2012 18:04:22 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9D1F91016BD; Mon, 14 May 2012 07:57:29 +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 oCnLPVsdqr0Y; Mon, 14 May 2012 07:57:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 8F7BB101709; Mon, 14 May 2012 07:57:22 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id CAADC8F753 for ; Mon, 14 May 2012 07:57:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C7CE7A00B0 for ; Mon, 14 May 2012 07:57:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iUxtF0zir5b6 for ; Mon, 14 May 2012 07:57:19 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtp.enix.org (smtp.enix.org [193.19.211.146]) by hemlock.osuosl.org (Postfix) with ESMTPS id 542E8A0093 for ; Mon, 14 May 2012 07:57:19 +0000 (UTC) Received: from [88.188.83.94] (helo=localhost) by smtp.enix.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1STq3Z-0004iw-Gh for buildroot@uclibc.org; Mon, 14 May 2012 09:51:01 +0200 From: Thomas Petazzoni To: buildroot@uclibc.org Date: Mon, 14 May 2012 09:50:57 +0200 Message-Id: <1336981857-4221-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1336981857-4221-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1336981857-4221-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 2/2] gdb: not available on avr32 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.org/results/1c6cfa7f069e2b7d8a7dacf76fbf95b7909fb37a/build-end.log. Signed-off-by: Thomas Petazzoni --- toolchain/gdb/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in index c9c54b8..fd6956b 100644 --- a/toolchain/gdb/Config.in +++ b/toolchain/gdb/Config.in @@ -5,7 +5,7 @@ config BR2_PACKAGE_GDB select BR2_PACKAGE_NCURSES depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS - depends on !BR2_sh && !BR2_sh64 + depends on !BR2_sh && !BR2_sh64 && !BR2_avr32 help Build the full gdb debugger to run on the target.