From patchwork Thu Mar 26 23:01:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 455236 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 A12D8140146 for ; Fri, 27 Mar 2015 10:03:49 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=xB0/iZnp; dkim-adsp=fail (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id EEC45A3CDC; Thu, 26 Mar 2015 23:03:48 +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 HXvqq2YnlOQT; Thu, 26 Mar 2015 23:03:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6E507A3E7C; Thu, 26 Mar 2015 23:03:48 +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 E4AA81CEED2 for ; Thu, 26 Mar 2015 23:03:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DF6A192554 for ; Thu, 26 Mar 2015 23:03:46 +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 Xsz26Cy289AS for ; Thu, 26 Mar 2015 23:03:46 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 21E0892550 for ; Thu, 26 Mar 2015 23:03:45 +0000 (UTC) Received: from asgard (cpe-181-46-99-160.telecentro-reversos.com.ar [181.46.99.160] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.15.1/8.15.1) with ESMTPSA id t2QN3d2Z012621 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 26 Mar 2015 23:03:42 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1427411024; bh=xS8uuhTnC856nJyH/0+ezFoCIKVv+ouyd/lGyqbpdQo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=xB0/iZnpZvEK/OWLjli4Xkzxm80XMnjCaTWO4Dx8tvGriCTZx1Z8S9jmbPxX83NHc JRJBLiH7O006gxePMbuUrGS7bUja8k/jIxxGZrms8RyF4wAtEoXtI7lhPxLf3754xJ sxkDKIWBGZdt+PztSRntKML87bLH5Yi4wGMhvikc= Received: by asgard (sSMTP sendmail emulation); Thu, 26 Mar 2015 20:01:25 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 26 Mar 2015 20:01:03 -0300 Message-Id: <1427410863-7574-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.5 In-Reply-To: <1427410863-7574-1-git-send-email-gustavo@zacarias.com.ar> References: <1427410863-7574-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.98.6 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 3/3] gdb: deprecate version 7.7.x X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Now that 7.9 was added and 7.8.x is default we don't want to have a dozen versions so mark it as deprecated. Signed-off-by: Gustavo Zacarias --- package/gdb/Config.in.host | 1 + 1 file changed, 1 insertion(+) diff --git a/package/gdb/Config.in.host b/package/gdb/Config.in.host index 3a0baa1..6b0ca9b 100644 --- a/package/gdb/Config.in.host +++ b/package/gdb/Config.in.host @@ -33,6 +33,7 @@ choice config BR2_GDB_VERSION_7_7 bool "gdb 7.7.x" + depends on BR2_DEPRECATED_SINCE_2015_05 config BR2_GDB_VERSION_7_8 bool "gdb 7.8.x"