From patchwork Fri Jan 19 18:17:42 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Weber X-Patchwork-Id: 863676 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zNTZr3KZCz9sP9 for ; Sat, 20 Jan 2018 05:17:56 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BACE98A389; Fri, 19 Jan 2018 18:17:50 +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 643VyBFNNEHZ; Fri, 19 Jan 2018 18:17:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 0CFEC8A376; Fri, 19 Jan 2018 18:17:48 +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 5ACDD1C064D for ; Fri, 19 Jan 2018 18:17:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 56D4B89646 for ; Fri, 19 Jan 2018 18:17:46 +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 r1qizSKBIlXp for ; Fri, 19 Jan 2018 18:17:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from ch3vs02.rockwellcollins.com (smtpimr.rockwellcollins.com [205.175.226.29]) by whitealder.osuosl.org (Postfix) with ESMTPS id 4F4F389622 for ; Fri, 19 Jan 2018 18:17:45 +0000 (UTC) Received: from ofwch3n02.rockwellcollins.com (HELO crulimr02.rockwellcollins.com) ([205.175.226.14]) by ch3vs02.rockwellcollins.com with ESMTP; 19 Jan 2018 12:17:45 -0600 X-Received: from bacon.rockwellcollins.com (unknown [192.168.6.146]) by crulimr02.rockwellcollins.com (Postfix) with ESMTP id 3BDCA60296; Fri, 19 Jan 2018 12:17:44 -0600 (CST) From: Matt Weber To: buildroot@buildroot.org Date: Fri, 19 Jan 2018 12:17:42 -0600 Message-Id: <20180119181743.30625-1-matthew.weber@rockwellcollins.com> X-Mailer: git-send-email 2.14.2 Subject: [Buildroot] [PATCH 1/2] package/fmc: Remove hash check X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 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 uses a kconfig value for the version, so ignore the hash check which will fail when the user specifies something other then the kconfig default. Signed-off-by: Matthew Weber --- package/fmc/fmc.hash | 2 -- package/fmc/fmc.mk | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 package/fmc/fmc.hash diff --git a/package/fmc/fmc.hash b/package/fmc/fmc.hash deleted file mode 100644 index 13d9d77ee5..0000000000 --- a/package/fmc/fmc.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally calculated -sha256 a91e0c9b7c7f238634c64a755c05671f33f2acdb6ae2d09cad4d683b364ee8e4 fmc-fsl-sdk-v2.0.tar.gz diff --git a/package/fmc/fmc.mk b/package/fmc/fmc.mk index 2a95fec0b7..5dda914858 100644 --- a/package/fmc/fmc.mk +++ b/package/fmc/fmc.mk @@ -10,6 +10,8 @@ FMC_LICENSE = MIT FMC_LICENSE_FILES = COPYING FMC_DEPENDENCIES = libxml2 tclap fmlib +BR_NO_CHECK_HASH_FOR += $(FMC_SOURCE) + FMC_MAKE_OPTS = \ CC="$(TARGET_CC)" \ CXX="$(TARGET_CXX)" \