So it's possible to install or remove it as needed.
Tested-by: Lucian Cristian <lucian.cristian@gmail.com>
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit 27bfde9c9f)
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			593 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			593 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=urandom-seed
 | 
						|
PKG_VERSION:=1.0
 | 
						|
PKG_RELEASE:=1
 | 
						|
PKG_LICENSE:=GPL-2.0
 | 
						|
 | 
						|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
 | 
						|
define Package/$(PKG_NAME)
 | 
						|
  SECTION:=base
 | 
						|
  CATEGORY:=Base system
 | 
						|
  DEPENDS:=+getrandom
 | 
						|
  TITLE:=/etc/urandom.seed handling for OpenWrt
 | 
						|
  URL:=http://openwrt.org/
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Prepare
 | 
						|
	mkdir -p $(PKG_BUILD_DIR)
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Compile/Default
 | 
						|
endef
 | 
						|
Build/Compile = $(Build/Compile/Default)
 | 
						|
 | 
						|
define Package/$(PKG_NAME)/install
 | 
						|
	$(CP) ./files/* $(1)/
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,urandom-seed))
 |