From patchwork Tue May 5 20:59:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 468461 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 831B91402F4 for ; Wed, 6 May 2015 06:59:38 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 098C291799; Tue, 5 May 2015 20:59:38 +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 woh4HFbsoumX; Tue, 5 May 2015 20:59:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 25C32917AD; Tue, 5 May 2015 20:59:37 +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 A4ECC1BFF13 for ; Tue, 5 May 2015 20:59:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9F5BF9179D for ; Tue, 5 May 2015 20:59:35 +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 x3hlhWd2Aoc4 for ; Tue, 5 May 2015 20:59:35 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by whitealder.osuosl.org (Postfix) with ESMTP id D822591509 for ; Tue, 5 May 2015 20:59:34 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id A004588D; Tue, 5 May 2015 22:59:39 +0200 (CEST) Received: from localhost (AToulouse-657-1-1093-144.w90-5.abo.wanadoo.fr [90.5.171.144]) by mail.free-electrons.com (Postfix) with ESMTPSA id 4591361E; Tue, 5 May 2015 22:59:39 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Tue, 5 May 2015 22:59:32 +0200 Message-Id: <1430859572-30900-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.1.0 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH] cryptsetup: disable on broken NIOS 2 toolchains 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 package triggers the infamous _gp issue with the external NIOS 2 toolchains, so let's disable it. Fixes: http://autobuild.buildroot.org/results/ff4/ff456344eb5bc8af619c1f5d88be0cb758dd5075/ Signed-off-by: Thomas Petazzoni --- package/cryptsetup/Config.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/cryptsetup/Config.in b/package/cryptsetup/Config.in index 89cc4b5..3d3c47d 100644 --- a/package/cryptsetup/Config.in +++ b/package/cryptsetup/Config.in @@ -8,6 +8,9 @@ config BR2_PACKAGE_CRYPTSETUP depends on BR2_USE_MMU # lvm2, e2fsprogs depends on !BR2_STATIC_LIBS # lvm2 depends on BR2_USE_WCHAR # util-linux + # Triggers the _gp link issue + depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305 + depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405 help This tool helps manipulate dm-crypt and luks partitions for on-disk encryption. @@ -17,3 +20,5 @@ config BR2_PACKAGE_CRYPTSETUP comment "cryptsetup needs a toolchain w/ wchar, threads, dynamic library" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305 + depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405