summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/MAKEDEV2
-rw-r--r--etc/defaults/rc.conf1
-rw-r--r--etc/etc.amd64/rc.amd6414
-rw-r--r--etc/etc.i386/rc.i38614
4 files changed, 1 insertions, 30 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index 17c08b6..aa0d4dc 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -303,7 +303,7 @@ std)
mknod mem c 2 0 root:kmem; chmod 640 mem
mknod null c 2 2; chmod 666 null
mknod random c 2 3; chmod 644 random
- mknod urandom c 2 4; chmod 644 urandom
+ ln -sf random urandom
mknod zero c 2 12; chmod 666 zero
mknod io c 2 14; chmod 600 io
mknod tty c 1 0; chmod 666 tty
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf
index 8563a0e..36a89ff 100644
--- a/etc/defaults/rc.conf
+++ b/etc/defaults/rc.conf
@@ -282,7 +282,6 @@ ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO).
linux_enable="NO" # Linux binary compatibility loaded at startup (or NO).
svr4_enable="NO" # SysVR4 emulation loaded at startup (or NO).
osf1_enable="NO" # Alpha OSF/1 emulation loaded at startup (or NO).
-rand_irqs="NO" # Stir the entropy pool (like "5 11" or NO).
clear_tmp_enable="NO" # Clear /tmp at startup.
ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib"
# shared library search paths
diff --git a/etc/etc.amd64/rc.amd64 b/etc/etc.amd64/rc.amd64
index dd72e80..778c8a5 100644
--- a/etc/etc.amd64/rc.amd64
+++ b/etc/etc.amd64/rc.amd64
@@ -209,17 +209,3 @@ if [ -n "${allscreens_flags}" ]; then
fi
echo '.'
-
-# interrupts for /dev/random device
-#
-case ${rand_irqs} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n 'entropy IRQs:'
- for irq in ${rand_irqs}; do
- echo -n " ${irq}" && rndcontrol -q -s ${irq}
- done
- echo '.'
- ;;
-esac
diff --git a/etc/etc.i386/rc.i386 b/etc/etc.i386/rc.i386
index dd72e80..778c8a5 100644
--- a/etc/etc.i386/rc.i386
+++ b/etc/etc.i386/rc.i386
@@ -209,17 +209,3 @@ if [ -n "${allscreens_flags}" ]; then
fi
echo '.'
-
-# interrupts for /dev/random device
-#
-case ${rand_irqs} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n 'entropy IRQs:'
- for irq in ${rand_irqs}; do
- echo -n " ${irq}" && rndcontrol -q -s ${irq}
- done
- echo '.'
- ;;
-esac
OpenPOWER on IntegriCloud