From dcf6b23722670c7dbc948deba3f3d1fd69ea2aa7 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 9 Mar 2024 21:05:05 +0100 Subject: [PATCH] nanoBSD: disable entropy_boot_file due to read-only /boot --- tools/tools/nanobsd/defaults.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tools/nanobsd/defaults.sh b/tools/tools/nanobsd/defaults.sh index 0557d2668bf..0e7f2ca7686 100755 --- a/tools/tools/nanobsd/defaults.sh +++ b/tools/tools/nanobsd/defaults.sh @@ -564,7 +564,8 @@ setup_nanobsd_etc ( ) ( # Make root filesystem R/O by default echo "root_rw_mount=NO" >> etc/defaults/rc.conf - # Disable entropy file, since / is read-only /var/db/entropy should be enough? + # Disable entropy files, since / is read-only - /var/db/entropy should be enough? + echo "entropy_boot_file=NO" >> etc/defaults/rc.conf echo "entropy_file=NO" >> etc/defaults/rc.conf [ -n "${NANO_NOPRIV_BUILD}" ] && chmod 444 etc/defaults/rc.conf -- 2.44.0