aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4ee9423..55c6a6e 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,6 @@ SeedRNG is a simple program made for seeding the Linux kernel random number
generator from seed files. The program takes no arguments, must be run as root,
and always attempts to do something useful.
-Being a single C file, `seedrng.c`, SeedRNG is meant to be copy and pasted
-verbatim into various minimal init system projects and tweaked as needed.
-
This program is useful in light of the fact that the Linux kernel RNG cannot be
initialized from shell scripts, and new seeds cannot be safely generated from
boot time shell scripts either.
@@ -33,6 +30,11 @@ compile time. If the `SEEDRNG_SKIP_CREDIT` environment variable is set to `1`,
`true`, `yes`, or `y`, then seeds never credit the RNG, even if the seed file
is creditable.
+Being a single C file, `seedrng.c`, SeedRNG is meant to be copy and pasted
+verbatim into various minimal init system projects and tweaked as needed.
+**Please do not package this repo as a standalone program**: it is intended as
+utility code meant to be imported into existing projects instead.
+
### Building & Installing
```