b324450ef9
This includes the following changes: 9adede5 Bumped version to 1.9.12 7487642 Merge pull request #40 from PrinterFranklin/fix_memory_leak cbef34b fix a memory leak in havege_destroy 02674ae Updated ChangeLog 1ce2092 Update README.md b77e7db Create README.md f5bd6fa Updated version to v1.9.11 68b1d84 Merge branch 'master' of https://github.com/jirka-h/haveged fb12bb3 updated fedora.spec b162c91 Merge pull request #35 from eworm-de/private-tmp b839803 Merge pull request #34 from Chocobo1/gh_action 4a0a008 Replace @SBIN_DIR@ in haveged.service file with actual path c216a6f Moved haveged.spec to fedora.spec 2098470 fix ordering cycle with private tmp 7cd68e1 Add GitHub Actions continuous integration script ebe97f0 Fixed time format Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
738 B
Makefile
27 lines
738 B
Makefile
################################################################################
|
|
#
|
|
# haveged
|
|
#
|
|
################################################################################
|
|
|
|
HAVEGED_VERSION = 1.9.12
|
|
HAVEGED_SITE = $(call github,jirka-h,haveged,v$(HAVEGED_VERSION))
|
|
HAVEGED_LICENSE = GPL-3.0+
|
|
HAVEGED_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_sparc_v8)$(BR2_sparc_leon3),y)
|
|
HAVEGED_CONF_OPTS += --enable-clock_gettime=yes
|
|
endif
|
|
|
|
define HAVEGED_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/haveged/S21haveged \
|
|
$(TARGET_DIR)/etc/init.d/S21haveged
|
|
endef
|
|
|
|
define HAVEGED_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/haveged/haveged.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/haveged.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|