From: Felix Fietkau Date: Mon, 21 Mar 2011 23:02:06 +0000 (+0000) Subject: add support for md5sum checks for mirrored tarballs of packages with version control... X-Git-Tag: reboot~17161 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=b568a64f8c1f7c077c83d8c189d4c84ca270aeb4;ds=sidebyside add support for md5sum checks for mirrored tarballs of packages with version control source urls SVN-Revision: 26260 --- diff --git a/include/download.mk b/include/download.mk index fd197ea216..7009bfcd44 100644 --- a/include/download.mk +++ b/include/download.mk @@ -45,7 +45,7 @@ define DownloadMethod/default endef define wrap_mirror - $(if $(MIRROR),@$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "x" || ( $(1) ),$(1)) + $(if $(MIRROR),@$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(MIRROR_MD5SUM)" || ( $(1) ),$(1)) endef define DownloadMethod/cvs @@ -158,6 +158,7 @@ define Download/Defaults MD5SUM:= SUBDIR:= MIRROR:=1 + MIRROR_MD5SUM:=x VERSION:= endef diff --git a/include/package.mk b/include/package.mk index 2ebd66d119..1c2c179cda 100644 --- a/include/package.mk +++ b/include/package.mk @@ -79,6 +79,7 @@ define Download/default SUBDIR:=$(PKG_SOURCE_SUBDIR) PROTO:=$(PKG_SOURCE_PROTO) $(if $(PKG_SOURCE_MIRROR),MIRROR:=$(filter 1,$(PKG_MIRROR))) + $(if $(PKG_MIRROR_MD5SUM),MIRROR_MD5SUM:=$(PKG_MIRROR_MD5SUM)) VERSION:=$(PKG_SOURCE_VERSION) MD5SUM:=$(PKG_MD5SUM) endef