- Update to 1.5
* Add online tests based on AIS-31 * Add -p option to specify the pid location. * Fix -F option to not take argument - i.e. now a switch * Factor diagnostic methods for capture and inject for better performance * Fix install target, move to bin and eliminate script if not daemon, now use sysv and systemd templates - use -F with no arguments in haveged.service * Add s390 architecture. Thanks to Dan Horak and Jiri Hladky * Add generic architecture with clock_gettime() timer. * Rewrite collection loop to support multiple instances and new diagnostics * Rewrite tuning mechanism to add virtual file system mining and correct cpuid bugs * Add prototype multi-thread collection option * Reduce collection buffer size to .5MB * Improve/correct build and install * Add new invocation options to support new features. OBS-URL: https://build.opensuse.org/package/show/security/haveged?expand=0&rev=60
This commit is contained in:
parent
78c4aec20f
commit
90916ac299
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4be23e678194631e3d13b0ced92b3bf2f4c5d7d881ad975e3c206ad79728397
|
||||
size 227301
|
3
haveged-1.5.tar.gz
Normal file
3
haveged-1.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6950672e88376f5de7976d0ac9e479c6a3ecdb8d2d214887347eb24f367d5d8e
|
||||
size 243336
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 13 13:15:15 UTC 2012 - mvyskocil@suse.cz
|
||||
|
||||
- Update to 1.5
|
||||
* Add online tests based on AIS-31
|
||||
* Add -p option to specify the pid location.
|
||||
* Fix -F option to not take argument - i.e. now a switch
|
||||
* Factor diagnostic methods for capture and inject for better performance
|
||||
* Fix install target, move to bin and eliminate script if not daemon, now use sysv and systemd templates
|
||||
- use -F with no arguments in haveged.service
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 15 22:46:03 UTC 2012 - aboe@opensuse.org
|
||||
|
||||
- Update to version 1.4
|
||||
|
@ -3,7 +3,7 @@ Description=Haveged Entropy Gathering Daemon
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/sbin/haveged -F 1 -w 1024 -v 0
|
||||
ExecStart=/usr/sbin/haveged -w 1024 -v 0 -F
|
||||
CapabilityBoundingSet=CAP_SYS_ADMIN
|
||||
|
||||
[Install]
|
||||
|
11
haveged.spec
11
haveged.spec
@ -17,8 +17,8 @@
|
||||
|
||||
|
||||
Name: haveged
|
||||
Version: 1.4
|
||||
Release: 1
|
||||
Version: 1.5
|
||||
Release: 0
|
||||
Summary: Feed entropy into random pool
|
||||
License: GPL-3.0
|
||||
Group: System/Daemons
|
||||
@ -59,6 +59,13 @@ export LDFLAGS="-Wl,-z,relro,-z,now -pie"
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
#XXX: nist test is killed by SIGKILL with static int random_pool1[_32MB] on
|
||||
# 32bit. Let change it to _08MB to avoid the test beeing killed, even if I
|
||||
# am not sure allocate of 128M is prohibited
|
||||
%ifarch %{ix86}
|
||||
sed -i 's/\[_32MB\]/[_08MB]/' nist/nist.c
|
||||
%endif
|
||||
|
||||
make %{?_smp_mflags} check
|
||||
|
||||
%install
|
||||
|
Loading…
Reference in New Issue
Block a user