diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-10 22:06:22 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-10 22:06:22 +0000 |
commit | 02472a4767f4a66d5a339051a69661d57945b4ce (patch) | |
tree | b6430585a0fd27b4d6e09ada2bb7b3a23f60ee00 | |
parent | 1ed579254d2eb71026825318010572744fe83680 (diff) | |
download | FreeBSD-src-02472a4767f4a66d5a339051a69661d57945b4ce.zip FreeBSD-src-02472a4767f4a66d5a339051a69661d57945b4ce.tar.gz |
Added starting of usbd
-rw-r--r-- | etc/rc | 6 | ||||
-rw-r--r-- | etc/rc.conf | 10 |
2 files changed, 12 insertions, 4 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.163 1998/12/12 23:04:20 dillon Exp $ +# $Id: rc,v 1.164 1999/01/06 14:01:52 peter Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -286,6 +286,10 @@ if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then echo -n ' sendmail'; /usr/sbin/sendmail ${sendmail_flags} fi +if [ "X${usbd_enable}" = X"YES" ]; then + echo -n ' usbd'; /usr/sbin/usbd ${usbd_flags} +fi + echo '.' # configure implementation specific stuff diff --git a/etc/rc.conf b/etc/rc.conf index 81cc530..be12e1d 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -6,7 +6,7 @@ # # All arguments must be in double or single quotes. # -# $Id: rc.conf,v 1.71 1999/01/08 23:47:28 jkh Exp $ +# $Id: rc.conf,v 1.72 1999/01/09 01:17:41 jkh Exp $ ############################################################## ### Important initial Boot-time options ##################### @@ -163,6 +163,8 @@ allscreens_flags="" # Set this vidcontrol mode for all virtual screens cron_enable="YES" # Run the periodic job daemon. lpd_enable="NO" # Run the line printer daemon. lpd_flags="" # Flags to lpd (if enabled). +usbd_enable="NO" # Run the usbd daemon. +usbd_flags="" # Flags to usbd (if enabled). sendmail_enable="YES" # Run the sendmail daemon (or NO). sendmail_flags="-bd -q30m" # -bd is pretty mandatory. dumpdev="NO" # Device name to crashdump to (if enabled). @@ -172,8 +174,10 @@ ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO). linux_enable="NO" # Linux 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 -ldconfig_paths_aout="/usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout" # a.out shared library search paths +ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib" + # shared library search paths +ldconfig_paths_aout="/usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout" + # a.out shared library search paths kern_securelevel_enable="NO" # kernel security level (see init(8)), kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure update_motd="YES" # update version info in /etc/motd (or NO) |