From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from 17.mo6.mail-out.ovh.net ([46.105.36.150]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YVgu6-0008UZ-MW for barebox@lists.infradead.org; Wed, 11 Mar 2015 13:42:31 +0000 Received: from mail179.ha.ovh.net (gw6.ovh.net [213.251.189.206]) by mo6.mail-out.ovh.net (Postfix) with SMTP id 06622FFA232 for ; Wed, 11 Mar 2015 14:42:04 +0100 (CET) From: Jean-Christophe PLAGNIOL-VILLARD Date: Wed, 11 Mar 2015 14:41:49 +0100 Message-Id: <1426081316-14657-1-git-send-email-plagnioj@jcrosoft.com> In-Reply-To: <20150311132634.GN30554@ns203013.ovh.net> References: <20150311132634.GN30554@ns203013.ovh.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 1/8] digest: move digest.c to crypto To: barebox@lists.infradead.org with not the rest of the implementation Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- common/Makefile | 1 - crypto/Makefile | 1 + {common => crypto}/digest.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {common => crypto}/digest.c (100%) diff --git a/common/Makefile b/common/Makefile index ee5dca7..6bfbfb4 100644 --- a/common/Makefile +++ b/common/Makefile @@ -20,7 +20,6 @@ obj-$(CONFIG_CMD_MEMTEST) += memtest.o obj-$(CONFIG_COMMAND_SUPPORT) += command.o obj-$(CONFIG_CONSOLE_FULL) += console.o obj-$(CONFIG_CONSOLE_SIMPLE) += console_simple.o -obj-$(CONFIG_DIGEST) += digest.o obj-$(CONFIG_DDR_SPD) += ddr_spd.o obj-$(CONFIG_ENV_HANDLING) += environment.o obj-$(CONFIG_ENVIRONMENT_VARIABLES) += env.o diff --git a/crypto/Makefile b/crypto/Makefile index 7c5b035..22ae829 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -1,6 +1,7 @@ obj-$(CONFIG_CRC32) += crc32.o obj-$(CONFIG_CRC16) += crc16.o obj-$(CONFIG_CRC7) += crc7.o +obj-$(CONFIG_DIGEST) += digest.o obj-$(CONFIG_MD5) += md5.o obj-$(CONFIG_SHA1) += sha1.o obj-$(CONFIG_SHA224) += sha2.o diff --git a/common/digest.c b/crypto/digest.c similarity index 100% rename from common/digest.c rename to crypto/digest.c -- 2.1.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox