mirror of
				https://github.com/cjdelisle/openwrt.git
				synced 2025-11-04 14:58:41 +00:00 
			
		
		
		
	When using zst instead of xz, the hash changes. This commit fixes the hash for packages and tools in core. Signed-off-by: Paul Spooren <mail@aparcar.org>
		
			
				
	
	
		
			33 lines
		
	
	
		
			824 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			824 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (c) 2017-2019 Tomasz Maciej Nowak <tmn505@gmail.com>
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME := cbootimage-configs
 | 
						|
 | 
						|
PKG_SOURCE_DATE := 2017-04-13
 | 
						|
PKG_SOURCE_PROTO := git
 | 
						|
PKG_SOURCE_URL := https://github.com/NVIDIA/cbootimage-configs.git
 | 
						|
PKG_SOURCE_VERSION := 7c3b458b93ed6947cd083623f543e93f9103cc0f
 | 
						|
PKG_MIRROR_HASH := 6ba2dde907d3cc403720954738a92431b1f40d562db5815c08971c39374d72a1
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/host-build.mk
 | 
						|
 | 
						|
define Host/Compile
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Install
 | 
						|
	$(INSTALL_DIR) $(STAGING_DIR_HOST)/share/$(PKG_NAME)
 | 
						|
	$(CP) $(HOST_BUILD_DIR)/* \
 | 
						|
		$(STAGING_DIR_HOST)/share/$(PKG_NAME)
 | 
						|
endef
 | 
						|
 | 
						|
define Host/Clean
 | 
						|
	rm -fR $(STAGING_DIR_HOST)/share/$(PKG_NAME)
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call HostBuild))
 |