From patchwork Sat Apr 11 12:17:30 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 460359 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 427D2140271 for ; Sat, 11 Apr 2015 22:18:10 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=nGuf0nu2; dkim-adsp=fail (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7238D317BA; Sat, 11 Apr 2015 12:18:09 +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 XrPkautR98mY; Sat, 11 Apr 2015 12:18:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 5B3F8317CA; Sat, 11 Apr 2015 12:18:08 +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 83B8A1C1F01 for ; Sat, 11 Apr 2015 12:18:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 808108D084 for ; Sat, 11 Apr 2015 12:18:07 +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 jgmUZEjEvJ6W for ; Sat, 11 Apr 2015 12:18:06 +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 57F3F8D077 for ; Sat, 11 Apr 2015 12:18:06 +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 t3BCHxQp005709 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 11 Apr 2015 12:18:02 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1428754684; bh=TjEpNMR+9PLXRzKcC4G4xNRF/8HpaDQbr7BxAvIWJGA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=nGuf0nu24c2XlZLOP9xGNbF+byJoxq9w6KTqszXyPGtI8QyKRmZZI1kOF+cFyMNtr VMB27UP4QcMmWnHhKTboOkeKjxSth+DePOujSHOn4nExraommndwDbAuC6vEa15MzH xCOqwvWD3rwHIOQTghRVEiQrZQoA8WhSRlH2lRlI= Received: by asgard (sSMTP sendmail emulation); Sat, 11 Apr 2015 09:17:53 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 11 Apr 2015 09:17:30 -0300 Message-Id: <1428754662-27829-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.5 In-Reply-To: <1428754662-27829-1-git-send-email-gustavo@zacarias.com.ar> References: <1428754662-27829-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 02/14] package/uclibc: default to Y for IPv6 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" This will allow us to remove IPv6 handling in the tree without breaking things while doing so. Signed-off-by: Gustavo Zacarias --- package/uclibc/Config.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/package/uclibc/Config.in b/package/uclibc/Config.in index fdf8351..5bd9098 100644 --- a/package/uclibc/Config.in +++ b/package/uclibc/Config.in @@ -87,11 +87,8 @@ config BR2_UCLIBC_CONFIG If unsure, use the default. config BR2_TOOLCHAIN_BUILDROOT_INET_IPV6 - bool "Enable IPv6 support" - select BR2_INET_IPV6 - help - Enable this option if you want your toolchain to support - IPv6. + bool + default y config BR2_TOOLCHAIN_BUILDROOT_INET_RPC bool "Enable RPC support"