summaryrefslogtreecommitdiffstats
path: root/Makefile.in (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-31New parameter --once to refill entropy once and quit immediatellyJirka Hladky3-2/+16
2021-12-31Revert "Revert "Updated systemd service files to not start haveged service ↵Jirka Hladky3-0/+3
on kernel 5.6 and newer"" This reverts commit f836b13a20ac6a36aa144c71ee50ac3495488976.
2021-12-31Updated configure scriptJirka Hladky6-1/+18
2021-12-31Revert "Updated systemd service files to not start haveged service on kernel ↵Jirka Hladky3-3/+0
5.6 and newer" This reverts commit cef1d425b5431847b8c9ab5b00c3e6b82a32b4f2.
2021-12-30Removed debug messageJirka Hladky1-4/+3
2021-12-29Add entropy unconditionally at start and then every 60 secondsJirka Hladky1-1/+24
2021-11-03Fix: haveged cannot be run as an application if also running as a daemonJirka Hladky2-2/+5
2021-10-31Allow newuname syscall. See https://github.com/jirka-h/haveged/issues/63 for ↵Jirka Hladky7-329/+1
details
2021-10-28Renamed Kali_Linux_raspberry to Kali_Linux_Raspberry_armhf. See ↵Jirka Hladky12-328/+0
https://github.com/jirka-h/haveged/issues/63
2021-10-28Renamed Kali_Linux_raspberry to Raspberry_armhf. See ↵Jirka Hladky6-0/+328
https://github.com/jirka-h/haveged/issues/63
2021-10-28Add files via uploadTerraminator6-0/+328
2021-09-30Bumped version to v1.9.16Jirka Hladky5-15/+26
2021-09-30Updated contrib/Fedora/haveged.spec for version 1.9.15v1.9.15Jirka Hladky1-3/+6
2021-09-30Updated ChangeLog NEWSJirka Hladky2-0/+4
2021-09-30Fix for https://github.com/jirka-h/haveged/issues/62Jirka Hladky1-4/+4
2021-09-30Removed init.dJirka Hladky15-309/+87
2021-09-30Removed old init.d files. The up-to-date configs are under contrib directoryJirka Hladky8-801/+0
2021-08-30Updated systemd service files to not start haveged service on kernel 5.6 and ↵Jirka Hladky3-0/+3
newer
2021-08-30Fixed issue #60Jirka Hladky1-1/+3
2021-03-24Preparing v1.9.15 releaseJirka Hladky4-12/+17
2021-03-24Improved make check commandJirka Hladky6-17/+89
2021-03-22Update README.mdjirka-h1-0/+17
2021-03-21Check for sys/auxv.h before using it.Peter Seiderer2-0/+5
- fixes uclibc-ng compile (does not provide sys/auxv.h header file) Fixes: haveged.c:22:10: fatal error: sys/auxv.h: No such file or directory 22 | #include <sys/auxv.h> | ^~~~~~~~~~~~ Signed-off-by: Peter Seiderer <ps.report@gmx.net>
2021-03-13haveged: fix build on uclibcPierre-Jean Texier3-1/+12
Check for HAVE_GETAUXVAL or HAVE_SYS_AUXV_H before using getauxval to avoid a build failure on uclibc Fixes: /bin/bash ../libtool --tag=CC --mode=compile /home/pjtexier/Bureau/buildroot/pj/bootlin-armv5-uclibc/host/bin/arm-linux-gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wextra -Wpedantic -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c -o libhavege_la-havege.lo `test -f 'havege.c' || echo './'`havege.c /bin/bash ../libtool --tag=CC --mode=compile /home/pjtexier/Bureau/buildroot/pj/bootlin-armv5-uclibc/host/bin/arm-linux-gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wextra -Wpedantic -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c -o libhavege_la-havegetune.lo `test -f 'havegetune.c' || echo './'`havegetune.c /bin/bash ../libtool --tag=CC --mode=compile /home/pjtexier/Bureau/buildroot/pj/bootlin-armv5-uclibc/host/bin/arm-linux-gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wextra -Wpedantic -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c -o libhavege_la-havegecollect.lo `test -f 'havegecollect.c' || echo './'`havegecollect.c /bin/bash ../libtool --tag=CC --mode=compile /home/pjtexier/Bureau/buildroot/pj/bootlin-armv5-uclibc/host/bin/arm-linux-gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wextra -Wpedantic -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c -o libhavege_la-havegetest.lo `test -f 'havegetest.c' || echo './'`havegetest.c haveged.c:22:10: erreur fatale: sys/auxv.h : Aucun fichier ou dossier de ce type 22 | #include <sys/auxv.h> | ^~~~~~~~~~~~ compilation terminée. Closes: #56 Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com>