From fce33219bfa35c423b5f72a069bc3a3ad1f6d10f Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Tue, 22 Jul 2014 18:12:13 +0300 Subject: [PATCH 1/2] haveged: import from oldpackages. no changes --- utils/haveged/Makefile | 67 ++++++++++++++++++++++++++++++++ utils/haveged/files/haveged.init | 16 ++++++++ 2 files changed, 83 insertions(+) create mode 100644 utils/haveged/Makefile create mode 100644 utils/haveged/files/haveged.init diff --git a/utils/haveged/Makefile b/utils/haveged/Makefile new file mode 100644 index 000000000..5188f7132 --- /dev/null +++ b/utils/haveged/Makefile @@ -0,0 +1,67 @@ +# +# Copyright (C) 2006-2014 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id: Makefile 1 2012-01-12 03:50:18Z Olipro $ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=haveged +PKG_VERSION:=1.9.1 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.issihosts.com/$(PKG_NAME) +PKG_MD5SUM:=015ff58cd10607db0e0de60aeca2f5f8 + +#ensure this is consistent with the dir in the tarball!!! +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +PKG_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/haveged/template + SECTION:=utils + CATEGORY:=Utilities + TITLE:=Feeds the kernel entropy pool by timing CPU loops. + URL:=http://www.issihosts.com/haveged/ +endef + +define Package/haveged + $(call Package/haveged/template) + DEPENDS:=+libhavege +endef + +define Package/libhavege + $(call Package/haveged/template) + TITLE:=Library for haveged +endef + +CONFIGURE_ARGS+= \ + --enable-daemon=yes + --enable-threads=no + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_BUILD_DIR)/src/havege.h $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/src/.libs/libhavege.{a,so*} $(1)/usr/lib/ +endef + +define Package/haveged/install + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/haveged.init $(1)/etc/init.d/haveged + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/.libs/haveged $(1)/usr/sbin/ +endef + +define Package/libhavege/install + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_BUILD_DIR)/src/.libs/libhavege.so* $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,haveged)) +$(eval $(call BuildPackage,libhavege)) diff --git a/utils/haveged/files/haveged.init b/utils/haveged/files/haveged.init new file mode 100644 index 000000000..ce28e6186 --- /dev/null +++ b/utils/haveged/files/haveged.init @@ -0,0 +1,16 @@ +#!/bin/sh /etc/rc.common +# Copyright (C) 2012 OpenWrt.org + +START=98 + +HAVEGED_THRESHOLD=1024 +HAVEGED_DCACHE=32 +HAVEGED_ICACHE=32 + +start() { + service_start /usr/sbin/haveged -w $HAVEGED_THRESHOLD -d $HAVEGED_DCACHE -i $HAVEGED_ICACHE -v 1 +} + +stop() { + service_stop /usr/sbin/haveged +} From 7913f64cecfb233d3043fac302ce78e02b59f981 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Tue, 22 Jul 2014 18:15:58 +0300 Subject: [PATCH 2/2] haveged: add maintainer. Also bump PKG_RELEASE and remove old id line --- utils/haveged/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/haveged/Makefile b/utils/haveged/Makefile index 5188f7132..12a6237f5 100644 --- a/utils/haveged/Makefile +++ b/utils/haveged/Makefile @@ -4,13 +4,12 @@ # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id: Makefile 1 2012-01-12 03:50:18Z Olipro $ include $(TOPDIR)/rules.mk PKG_NAME:=haveged PKG_VERSION:=1.9.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.issihosts.com/$(PKG_NAME) @@ -18,6 +17,7 @@ PKG_MD5SUM:=015ff58cd10607db0e0de60aeca2f5f8 #ensure this is consistent with the dir in the tarball!!! PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_MAINTAINER:=Hannu Nyman PKG_BUILD_PARALLEL:=1