summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2000-09-12 13:21:40 +0000
committermarkm <markm@FreeBSD.org>2000-09-12 13:21:40 +0000
commitbf42c182536a43c1d32f5bd45ea88ca37283cba8 (patch)
tree3bef19ebf2f166bfcc00fa74e41ce6c34d84d3aa /sys
parent8310a0865410b67ec838360f16defef0a527224a (diff)
downloadFreeBSD-src-bf42c182536a43c1d32f5bd45ea88ca37283cba8.zip
FreeBSD-src-bf42c182536a43c1d32f5bd45ea88ca37283cba8.tar.gz
Turn the /dev/random device into a (pseudo-)device, not an option.
(I didn't realise that it was this easy!) Submitted by: jhb
Diffstat (limited to 'sys')
-rw-r--r--sys/alpha/conf/GENERIC2
-rw-r--r--sys/alpha/conf/NOTES2
-rw-r--r--sys/amd64/conf/GENERIC2
-rw-r--r--sys/conf/NOTES2
-rw-r--r--sys/conf/files12
-rw-r--r--sys/i386/conf/GENERIC2
-rw-r--r--sys/i386/conf/NEWCARD2
-rw-r--r--sys/i386/conf/NOTES2
8 files changed, 13 insertions, 13 deletions
diff --git a/sys/alpha/conf/GENERIC b/sys/alpha/conf/GENERIC
index 731a583..565dd6d 100644
--- a/sys/alpha/conf/GENERIC
+++ b/sys/alpha/conf/GENERIC
@@ -71,7 +71,6 @@ options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B #Posix P1003_1B real-time extentions
options _KPOSIX_PRIORITY_SCHEDULING
-options RANDOMDEV #entropy device
# Standard busses
device isa
@@ -153,6 +152,7 @@ device wb # Winbond W89C840F
device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
# Pseudo devices - the number indicates how many units to allocated.
+device random # Entropy device
device loop # Network loopback
device ether # Ethernet support
device sl # Kernel SLIP
diff --git a/sys/alpha/conf/NOTES b/sys/alpha/conf/NOTES
index 731a583..565dd6d 100644
--- a/sys/alpha/conf/NOTES
+++ b/sys/alpha/conf/NOTES
@@ -71,7 +71,6 @@ options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B #Posix P1003_1B real-time extentions
options _KPOSIX_PRIORITY_SCHEDULING
-options RANDOMDEV #entropy device
# Standard busses
device isa
@@ -153,6 +152,7 @@ device wb # Winbond W89C840F
device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
# Pseudo devices - the number indicates how many units to allocated.
+device random # Entropy device
device loop # Network loopback
device ether # Ethernet support
device sl # Kernel SLIP
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index acf2323..215ee66 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -57,7 +57,6 @@ options SYSVSEM #SYSV-style semaphores
options P1003_1B #Posix P1003_1B real-time extensions
options _KPOSIX_PRIORITY_SCHEDULING
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
-options RANDOMDEV #entropy device
# To make an SMP kernel, the next two are needed
#options SMP # Symmetric MultiProcessor Kernel
@@ -205,6 +204,7 @@ device le
device lnc
# Pseudo devices - the number indicates how many units to allocated.
+device random # Entropy device
device loop # Network loopback
device ether # Ethernet support
device sl # Kernel SLIP
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index e4949ab..2ebc8c7 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -719,7 +719,7 @@ options EXT2FS
options VFS_AIO
# Cryptographically secure random number generator; /dev/[u]random
-options RANDOMDEV
+device random
#####################################################################
diff --git a/sys/conf/files b/sys/conf/files
index e71001e..7b9c720 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -243,12 +243,12 @@ dev/ppbus/pps.c optional pps
dev/ppbus/vpo.c optional vpo
dev/ppbus/vpoio.c optional vpo
dev/randomdev/harvest.c standard
-dev/randomdev/randomdev.c optional randomdev
-dev/randomdev/yarrow.c optional randomdev
-dev/randomdev/hash.c optional randomdev
-crypto/blowfish/bf_cbc.c optional randomdev
-crypto/blowfish/bf_enc.c optional randomdev
-crypto/blowfish/bf_skey.c optional randomdev
+dev/randomdev/randomdev.c optional random
+dev/randomdev/yarrow.c optional random
+dev/randomdev/hash.c optional random
+crypto/blowfish/bf_cbc.c optional random
+crypto/blowfish/bf_enc.c optional random
+crypto/blowfish/bf_skey.c optional random
dev/rp/rp.c optional rp
dev/rp/rp_isa.c optional rp isa
dev/rp/rp_pci.c optional rp pci
diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC
index acf2323..215ee66 100644
--- a/sys/i386/conf/GENERIC
+++ b/sys/i386/conf/GENERIC
@@ -57,7 +57,6 @@ options SYSVSEM #SYSV-style semaphores
options P1003_1B #Posix P1003_1B real-time extensions
options _KPOSIX_PRIORITY_SCHEDULING
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
-options RANDOMDEV #entropy device
# To make an SMP kernel, the next two are needed
#options SMP # Symmetric MultiProcessor Kernel
@@ -205,6 +204,7 @@ device le
device lnc
# Pseudo devices - the number indicates how many units to allocated.
+device random # Entropy device
device loop # Network loopback
device ether # Ethernet support
device sl # Kernel SLIP
diff --git a/sys/i386/conf/NEWCARD b/sys/i386/conf/NEWCARD
index 90d8d5c..4d47f8b 100644
--- a/sys/i386/conf/NEWCARD
+++ b/sys/i386/conf/NEWCARD
@@ -64,7 +64,6 @@ options SYSVSEM #SYSV-style semaphores
options P1003_1B #Posix P1003_1B real-time extensions
options _KPOSIX_PRIORITY_SCHEDULING
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
-options RANDOMDEV #entropy device
# To make an SMP kernel, the next two are needed
#options SMP # Symmetric MultiProcessor Kernel
@@ -210,6 +209,7 @@ device xe
#device lnc
# Pseudo devices - the number indicates how many units to allocated.
+device random # Entropy device
device loop # Network loopback
device ether # Ethernet support
device sl # Kernel SLIP
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index e4949ab..2ebc8c7 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -719,7 +719,7 @@ options EXT2FS
options VFS_AIO
# Cryptographically secure random number generator; /dev/[u]random
-options RANDOMDEV
+device random
#####################################################################
OpenPOWER on IntegriCloud