Turn the /dev/random device into a (pseudo-)device, not an option.
(I didn't realise that it was this easy!) Submitted by: jhb
This commit is contained in:
parent
d0d519348d
commit
ac519db05b
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -719,7 +719,7 @@ options EXT2FS
|
||||
options VFS_AIO
|
||||
|
||||
# Cryptographically secure random number generator; /dev/[u]random
|
||||
options RANDOMDEV
|
||||
device random
|
||||
|
||||
|
||||
#####################################################################
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -719,7 +719,7 @@ options EXT2FS
|
||||
options VFS_AIO
|
||||
|
||||
# Cryptographically secure random number generator; /dev/[u]random
|
||||
options RANDOMDEV
|
||||
device random
|
||||
|
||||
|
||||
#####################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user