aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2000-12-02 18:29:18 +0000
committerMark Murray <markm@FreeBSD.org>2000-12-02 18:29:18 +0000
commit5f7f65f12441ecd1d99c40032fb750b9e206cf9f (patch)
tree09ccaa57de49affa02a43ef341283eb2a87ce7e7 /sys/modules
parent81babfd043a80f2149d6a6f0e9bf2434dcd3ff6f (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/random/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile
index d736feb2eb4a..84021c82dc67 100644
--- a/sys/modules/random/Makefile
+++ b/sys/modules/random/Makefile
@@ -9,7 +9,10 @@ SRCS += vnode_if.h opt_noblockrandom.h
CFLAGS += -I${.CURDIR}/../..
NOMAN = yes
-NOBLOCKRANDOM= yes
+# Uncomment the below macro to make a /dev/random that will not block at
+# boot time. Useful for personal workstations and the like where reboot
+# speed is paramount.
+#NOBLOCKRANDOM= yes
.if defined(NOBLOCKRANDOM)
RANDOM_OPTS= "\#define NOBLOCKRANDOM"
.endif