cd72d5bf57
This includes the following changes:
94079e6 Fixed invalid UTF-8 codes in ChangeLog
1470a82 Updated service.fedora
9596c53 Updated service.fedora
b50b59b New version 1.9.5
037e059 New version 1.9.5
2681d01 Added test for /dev/random symlink
0dac21b Update to automake 1.16
638e2f0 Fixed built issue on Cygwin
083f827 minimize diff
b38def1 minimize diff
e16369d take into account review by @nbraud
6dfce53 Remove support for CPUID on ia64
fc50dda [PATCH] Output some progress during CUSUM and RANDOM EXCURSION test
be4e481 NEWS: Cleanup extraneous whitespace
0815b3c Fixup upstream changelog
6d52229 Fix type mismatch in get_poolsize
90d00f7 service.redhat: update PIDFile
16a9726 fix segv at start
ceab89a init.d/Makefile.am: add missing dependency
01e3154 Diagnostics capture mode now works correctly by referencing the right variable during rng warmup
f219358 Fix segfault on arm machines
Also add a 'v' prefix in _SITE variable.
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 8e1b0d8857
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
929 B
Makefile
30 lines
929 B
Makefile
################################################################################
|
|
#
|
|
# haveged
|
|
#
|
|
################################################################################
|
|
|
|
HAVEGED_VERSION = 1.9.6
|
|
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
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
ln -fs /usr/lib/systemd/system/haveged.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/haveged.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|