From patchwork Tue Dec 30 22:22:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 424697 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 39A1114009B for ; Wed, 31 Dec 2014 09:22:21 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 672DB3129D; Tue, 30 Dec 2014 22:22:20 +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 Fb5OWTTkxjrb; Tue, 30 Dec 2014 22:22:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 61ECC2FE22; Tue, 30 Dec 2014 22:22:15 +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 C63CE1C2591 for ; Tue, 30 Dec 2014 22:22:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C325989EE6 for ; Tue, 30 Dec 2014 22:22:14 +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 jciE3aBqLeZk for ; Tue, 30 Dec 2014 22:22:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by hemlock.osuosl.org (Postfix) with ESMTPS id E0AF289FC6 for ; Tue, 30 Dec 2014 22:22:13 +0000 (UTC) Received: by mail-wi0-f175.google.com with SMTP id l15so24676698wiw.2 for ; Tue, 30 Dec 2014 14:22:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=N61gnfz0dcdzkZYGhi5Lfp+gGVhMGZeal5OqG2Gj1jA=; b=pVaqp3BOiYo+HUbUISND+I62Ic8lkRC4yP8OQvkfdk/9JKVhNgBCf6AteUS+sbpmgR q2KX1Iug5oHNilqjgm2o77YdTJeoViAJVmvjV+Fqj/Z9nDWp+b3zVozTqMng6U/IkOkA 02Y1ykpWj9YLgJWJpGE3Llv6sb3yp3tl0oCyGuCO68WbP1rs8x4QaVxf2+FjhV5bpq53 DUDehip1/kdf4QbTqtDKdr9Pu+uGgVbHeSv7QjA9TtNpVmqZ1WOkERkq+RLCFzTZ5JUN JjfVVuPXbyXNtggdQCMFQQK3frjAZyxhrvehvTernfqHTBu+IJ9PI9QfmKmYW1OReOWg TGwA== X-Received: by 10.180.107.195 with SMTP id he3mr106470135wib.44.1419978132642; Tue, 30 Dec 2014 14:22:12 -0800 (PST) Received: from gourin.bzh.lan (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id q7sm44932418wiv.8.2014.12.30.14.22.11 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 30 Dec 2014 14:22:11 -0800 (PST) From: "Yann E. MORIN" To: buildroot@buildroot.org Date: Tue, 30 Dec 2014 23:22:07 +0100 Message-Id: X-Mailer: git-send-email 1.9.1 In-Reply-To: References: Cc: Thomas Petazzoni , "Yann E. MORIN" Subject: [Buildroot] [PATCH 1/4] toolchain: add hidden option to specify it has libssp 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" Although SSP support is usuaaly provided by the C library, some toolchains may provide it using an alternate libssp implementation, most notably the one from gcc. Add a new option a toolchain may select if it provides SSP support using a separate libssp. Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni --- toolchain/toolchain-common.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/toolchain/toolchain-common.in b/toolchain/toolchain-common.in index 2ee2019..9be5420 100644 --- a/toolchain/toolchain-common.in +++ b/toolchain/toolchain-common.in @@ -44,6 +44,9 @@ config BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS config BR2_TOOLCHAIN_HAS_SSP bool +config BR2_TOOLCHAIN_HAS_LIBSSP + bool + config BR2_ENABLE_LOCALE_PURGE bool "Purge unwanted locales" help