From: Simon Kuenzer Date: Fri, 16 Apr 2021 09:28:51 +0000 (+0200) Subject: Add SHA256 checksum X-Git-Tag: RELEASE-0.6^0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=58c53336cf8a936d41f0d5056bf6b81964260a56;p=unikraft%2Flibs%2Fnewlib.git Add SHA256 checksum We add the SHA256 checksum of the downloaded archive so that Unikraft's build system is able to do an integrity check of the download. Signed-off-by: Simon Kuenzer Reviewed-by: Razvan Deaconescu Approved-by: Alexander Jung Tested-by: Unikraft CI GitHub-Pull-Request: #4 --- diff --git a/Makefile.uk b/Makefile.uk index 6858cc3..f5840fe 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -50,6 +50,8 @@ $(eval $(call addlib_s,libnewlibglue,$(CONFIG_LIBNEWLIBC))) LIBNEWLIB_VERSION=2.5.0.20170922 LIBNEWLIB_URL=http://sourceware.org/pub/newlib/newlib-$(LIBNEWLIB_VERSION).tar.gz LIBNEWLIB_PATCHDIR=$(LIBNEWLIBC_BASE)/patches +LIBNEWLIBC_ORIGIN_SHA256=16ccacbb9155b89a8333da057bfd2952d334795a38dfffcef6a4d83ae12e7275 + $(eval $(call fetch,libnewlibc,$(LIBNEWLIB_URL))) $(eval $(call patch,libnewlibc,$(LIBNEWLIB_PATCHDIR),newlib-$(LIBNEWLIB_VERSION)))