summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sys-apps/rng-tools: keyword ~arm64Anthony G. Basile2019-04-201-1/+1
| | | | | Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
* sys-apps/rng-tools: add support for muslAnthony G. Basile2019-02-271-2/+3
| | | | | Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-281-1/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* sys-apps/rng-tools: alpha stable wrt bug #562520Agostino Sarubbo2015-11-231-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="alpha"
* sys-apps/rng-tools: ia64 stable wrt bug #562520Mikle Kolyada2015-11-081-1/+1
| | | | Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: arm stable, bug #562520Markus Meier2015-11-031-1/+1
| | | | | Package-Manager: portage-2.2.23 RepoMan-Options: --include-arches="arm"
* sys-apps/rng-tools: ppc stable wrt bug #562520Agostino Sarubbo2015-10-301-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="ppc"
* sys-apps/rng-tools: x86 stable wrt bug #562520Mikle Kolyada2015-10-251-1/+1
| | | | Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: amd64 stable wrt bug #562520Agostino Sarubbo2015-10-191-1/+1
| | | | | Package-Manager: portage-2.2.20.1 RepoMan-Options: --include-arches="amd64"
* sys-apps/rng-tools: open entropy src with O_NOCTTY flag #556456Gokturk Yuksek2015-10-011-0/+1
| | | | | | | | | This revision patches the source file 'rngd_entsource.c', adding 'O_NOCTTY' flag to the open() call that opens the entropy source for rngd. Gentoo-Bug: https://bugs.gentoo.org/556456 Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: handle if redirecting output to a file fails in ebuildGokturk Yuksek2015-10-011-1/+1
| | | | | | Use '|| die' to handle if redirecting output to a file fails. Package-Manager: portage-2.2.20.1
* sys-apps/rng-tools: do not specify rng device in init script #481254Gokturk Yuksek2015-10-011-0/+40
Linux hw_random driver provides a unified interface for multiple RNGs and the RNG source is exposed through /dev/hwrng device node. There is no need for the init script to look for other device nodes under /dev. By default, rngd uses /dev/hwrng as the entropy source, therefore it's not required to specify it on the command line explicitly. The creation of /dev/hwrng requires CONFIG_DEVTMPFS support in the kernel. Due to the way hw_random module is written, some device managers may fail to create /dev/hwrng successfuly. Mdev, for example, incorrectly creates /dev/hw_random instead of /dev/hwrng, mistaking module's own name for the device node's name (see related bug 561102). However, per gentoo wiki [1], CONFIG_DEVTMPFS is part of the mdev setup and these systems will have two device nodes (/dev/hw_random and /dev/hwrng) that point to the same device. Even in such setups, rngd will successfuly find /dev/hwrng. [1] https://wiki.gentoo.org/index.php?title=Mdev&oldid=246636 Gentoo-Bug: https://bugs.gentoo.org/481254 Package-Manager: portage-2.2.20.1