From patchwork Thu Jan 14 11:55:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lada Trimasova X-Patchwork-Id: 567346 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id EF87A140317 for ; Thu, 14 Jan 2016 22:56:26 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3809133158; Thu, 14 Jan 2016 11:56:26 +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 SZ3aoORbbti6; Thu, 14 Jan 2016 11:56:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 90CE133160; Thu, 14 Jan 2016 11:56:16 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id E32481C11B9 for ; Thu, 14 Jan 2016 11:56:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1406E8C8F2 for ; Thu, 14 Jan 2016 11:56:11 +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 0WXnbZaWL0nB for ; Thu, 14 Jan 2016 11:56:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from smtprelay.synopsys.com (us01smtprelay-2.synopsys.com [198.182.60.111]) by whitealder.osuosl.org (Postfix) with ESMTPS id BA5F18C893 for ; Thu, 14 Jan 2016 11:56:10 +0000 (UTC) Received: from us02secmta2.synopsys.com (us02secmta2.synopsys.com [10.12.235.98]) by smtprelay.synopsys.com (Postfix) with ESMTP id 213FE10C1209; Thu, 14 Jan 2016 03:56:11 -0800 (PST) Received: from us02secmta2.internal.synopsys.com (us02secmta2.internal.synopsys.com [127.0.0.1]) by us02secmta2.internal.synopsys.com (Service) with ESMTP id 0BA7855F13; Thu, 14 Jan 2016 03:56:11 -0800 (PST) Received: from mailhost.synopsys.com (mailhost1.synopsys.com [10.12.238.239]) by us02secmta2.internal.synopsys.com (Service) with ESMTP id DD53155F02; Thu, 14 Jan 2016 03:56:10 -0800 (PST) Received: from mailhost.synopsys.com (localhost [127.0.0.1]) by mailhost.synopsys.com (Postfix) with ESMTP id CB5B6BD1; Thu, 14 Jan 2016 03:56:10 -0800 (PST) Received: from ltrimas-z400.internal.synopsys.com (ltrimas-z400.internal.synopsys.com [10.121.8.143]) by mailhost.synopsys.com (Postfix) with ESMTP id 570AEBBB; Thu, 14 Jan 2016 03:56:09 -0800 (PST) From: Lada Trimasova To: buildroot@busybox.net Date: Thu, 14 Jan 2016 14:55:56 +0300 Message-Id: <1452772556-18734-3-git-send-email-ltrimas@synopsys.com> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1452772556-18734-1-git-send-email-ltrimas@synopsys.com> References: <1452772556-18734-1-git-send-email-ltrimas@synopsys.com> Cc: Thomas Petazzoni , Lada Trimasova , Alexey Brodkin Subject: [Buildroot] [PATCH 2/2] Disabling TPM tools for ARC 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" TPM tools selects trousers package which is not available for ARC. So this package should be disabled for ARC too. Signed-off-by: Lada Trimasova Cc: Alexey Brodkin Cc: Thomas Petazzoni Cc: Peter Korsgaard --- package/tpm-tools/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/tpm-tools/Config.in b/package/tpm-tools/Config.in index dd59aaa..77e43fd 100644 --- a/package/tpm-tools/Config.in +++ b/package/tpm-tools/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_TPM_TOOLS select BR2_PACKAGE_TROUSERS select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + depends on !BR2_arc # trousers depends on BR2_TOOLCHAIN_HAS_THREADS # trousers depends on !BR2_STATIC_LIBS # trousers help