haveged: upgrade v1.9.4 -> v1.9.6

Both of the patches used in v1.9.4 have been incorporated in v1.9.6,
so they are no longer required - see upstream commits ceab89ad and
f2193587.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Trevor Gamblin
2019-09-25 09:25:33 -04:00
committed by Khem Raj
parent 5f32fd6b08
commit eb91a133ca
3 changed files with 2 additions and 56 deletions
@@ -1,20 +0,0 @@
Some ARM cpus does not report the cache size or say it is -1
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=866306
Upstream-status: Pending
Index: haveged-1.9.2/src/havegetune.c
===================================================================
--- haveged-1.9.2.orig/src/havegetune.c
+++ haveged-1.9.2/src/havegetune.c
@@ -795,6 +795,9 @@ static int vfs_configInfoCache(
ctype = vfs_configFile(pAnchor, path, vfs_configType);
strcpy(path+plen, "size");
size = vfs_configFile(pAnchor, path, vfs_configInt);
+ if (size == -1) {
+ size = ctype == 'I' ? GENERIC_ICACHE : GENERIC_DCACHE;
+ }
cfg_cacheAdd(pAnchor, SRC_VFS_INDEX, pArgs[1], level, ctype, size);
}
}
@@ -1,32 +0,0 @@
From b04eeea777df32364df74bd63fc5b7fb05d21c8d Mon Sep 17 00:00:00 2001
From: Jackie Huang <jackie.huang@windriver.com>
Date: Tue, 27 Mar 2018 10:21:09 +0800
Subject: [PATCH] init.d/Makefile.am: add missing dependency
install-data-hook should depend on install-exec-hook, or the
haveged.service might be installed incorrectly when build
with -j option.
Upstream-Status: Submitted [https://github.com/jirka-h/haveged/pull/13]
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Khem Raj raj.khem@gmail.com
---
init.d/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init.d/Makefile.am b/init.d/Makefile.am
index 5940f78..07bcdf7 100644
--- a/init.d/Makefile.am
+++ b/init.d/Makefile.am
@@ -33,7 +33,7 @@ if ENABLE_SYSTEMD
install-exec-hook:
$(do_subst) < $(srcdir)/$(src_tmpl) > haveged.service;
-install-data-hook:
+install-data-hook: install-exec-hook
if ENABLE_SYSTEMD_LOOKUP
install -p -D -m644 haveged.service $(DESTDIR)`pkg-config --variable=systemdsystemunitdir systemd`/haveged.service;
else
--
2.11.0
@@ -5,11 +5,9 @@ HOMEPAGE = "http://www.issihosts.com/haveged/index.html"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM="file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
# v1.9.4
SRCREV = "faa40ff345af194d3253f5fb030403e3c9831c36"
# v1.9.6
SRCREV = "1470a82a7f79110c79beea1ca5f2d3b0fd1a4668"
SRC_URI = "git://github.com/jirka-h/haveged.git \
file://haveged-init.d-Makefile.am-add-missing-dependency.patch \
file://fix-cpu-cache-size-detection.patch \
"
S = "${WORKDIR}/git"