ef3d0426f3
This fixes autobuilder error: http://autobuild.buildroot.net/results/5b8bbc30f347140309ab2f81e1fe50f517356a3e/ As sparcv9 assembly is used, we need to enable generic clock_gettime for sparcv8 systems. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
909 B
Makefile
30 lines
909 B
Makefile
################################################################################
|
|
#
|
|
# haveged
|
|
#
|
|
################################################################################
|
|
|
|
HAVEGED_VERSION = 1.9.1
|
|
HAVEGED_SITE = http://www.issihosts.com/haveged
|
|
HAVEGED_LICENSE = GPLv3+
|
|
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))
|