From patchwork Sat Oct 5 14:16:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 280768 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 4F1A82C00CE for ; Sun, 6 Oct 2013 00:16:50 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 717EC85259; Sat, 5 Oct 2013 14:16:26 +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 3FW6mU7ggOlr; Sat, 5 Oct 2013 14:16:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 6995B93D45; Sat, 5 Oct 2013 14:16:24 +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 CE6D31BFA1E for ; Sat, 5 Oct 2013 14:16:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B1DF293276 for ; Sat, 5 Oct 2013 14:16:18 +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 m+j-IrvQtbsp for ; Sat, 5 Oct 2013 14:16:17 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by hemlock.osuosl.org (Postfix) with ESMTP id 9659E9315A for ; Sat, 5 Oct 2013 14:16:17 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 5216F8F0; Sat, 5 Oct 2013 16:16:23 +0200 (CEST) Received: from localhost (AToulouse-651-1-247-171.w90-50.abo.wanadoo.fr [90.50.2.171]) by mail.free-electrons.com (Postfix) with ESMTPSA id 1794C891 for ; Sat, 5 Oct 2013 16:16:23 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sat, 5 Oct 2013 16:16:13 +0200 Message-Id: <1380982574-16628-5-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1380982574-16628-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1380982574-16628-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 4/5] toolchain-external: improve help text of some options 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: Thomas Petazzoni --- toolchain/toolchain-external/Config.in | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in index 89c799e..67f4fc7 100644 --- a/toolchain/toolchain-external/Config.in +++ b/toolchain/toolchain-external/Config.in @@ -876,15 +876,22 @@ config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC # For the time being, we assume that all custom external # toolchains have shadow password support. select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS + help + Select this option if your external toolchain uses the + uClibc C library (available from http://www.uclibc.org/). config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC bool "glibc/eglibc" select BR2_TOOLCHAIN_EXTERNAL_GLIBC help - Note: eglibc is a variant of glibc that (among other things) can be - configured to exclude some of its features. Using a toolchain with - eglibc configured to exclude key features may cause build failures to - some packages. + Select this option if your external toolchain uses the GNU C + library (available from https://www.gnu.org/software/libc/) + or its variant the eglibc library (http://www.eglibc.org/). + + Note: eglibc is a variant of glibc that (among other things) + can be configured to exclude some of its features. Using a + toolchain with eglibc configured to exclude key features may + cause build failures to some packages. config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_MUSL bool "musl"