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 /conf.d/meson.build | |
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 'conf.d/meson.build')
-rw-r--r-- | conf.d/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/conf.d/meson.build b/conf.d/meson.build index ddb056a4..ce704180 100644 --- a/conf.d/meson.build +++ b/conf.d/meson.build @@ -7,7 +7,6 @@ conf_common = [ 'localmount', 'netmount', 'swap', - 'urandom', ] conf_net = [ @@ -23,6 +22,7 @@ conf_FreeBSD = [ 'rarpd', 'savecore', 'syscons', + 'urandom', ] conf_Linux = [ @@ -36,12 +36,14 @@ conf_Linux = [ 'modules', 'mtab', 'net-online', + 'seedrng', ] conf_NetBSD = [ 'moused', 'rarpd', 'savecore', + 'urandom', ] conf_data = conf_common |