diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2022-03-30 11:15:13 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2022-03-30 22:07:35 -0500 |
commit | 0fb11190fa5911f6f9c20c38e74a664826157a34 (patch) | |
tree | 29649ac0c1724e0cb7c9d9e823587fbd5798d55f /runlevels/Makefile | |
parent | df18158e60dc6bfe9a77ac7d1b48417f808f5b11 (diff) |
add seedrng service for Linux
This moves urandom to *bsd only and adds seedrng as a separate service
for Linux.
This fixes #510
Diffstat (limited to 'runlevels/Makefile')
-rw-r--r-- | runlevels/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runlevels/Makefile b/runlevels/Makefile index 73843d8b..8d8b8e9e 100644 --- a/runlevels/Makefile +++ b/runlevels/Makefile @@ -1,7 +1,7 @@ include ../mk/net.mk BOOT= bootmisc fsck hostname localmount loopback \ - root swap sysctl urandom ${BOOT-${OS}} + root swap sysctl ${BOOT-${OS}} DEFAULT= local netmount NONETWORK= local SHUTDOWN= savecache ${SHUTDOWN-${OS}} @@ -29,20 +29,20 @@ BOOT-${OS}= SHUTDOWN-${OS}= SYSINIT-${OS}= -BOOT-BSD= hostid newsyslog savecore syslogd swap-blk +BOOT-BSD= hostid newsyslog savecore syslogd swap-blk urandom # Generic BSD stuff -BOOT-FreeBSD+= hostid modules newsyslog savecore syslogd +BOOT-FreeBSD+= hostid modules newsyslog savecore syslogd urandom # FreeBSD specific stuff BOOT-FreeBSD+= adjkerntz dumpon syscons BOOT-Linux+= binfmt hwclock keymaps modules mtab procfs save-keymaps \ - save-termencoding termencoding + save-termencoding seedrng termencoding SHUTDOWN-Linux= killprocs mount-ro SYSINIT-Linux= devfs cgroups dmesg sysfs # Generic BSD stuff -BOOT-NetBSD+= hostid newsyslog savecore syslogd +BOOT-NetBSD+= hostid newsyslog savecore syslogd urandom # NetBSD specific stuff BOOT-NetBSD+= devdb swap-blk ttys wscons |