save/restore debug regs, kick DR intercepts to userspace
[freebsd-src/fkvm-freebsd.git] / etc / rc
blob7268ee16b06f8aad14ffe0a3f826389a41ed57ca
1 #!/bin/sh
3 # Copyright (c) 2000-2004 The FreeBSD Project
4 # All rights reserved.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
27 # @(#)rc 5.27 (Berkeley) 6/5/91
28 # $FreeBSD$
31 # System startup script run by init on autoboot
32 # or after single-user.
33 # Output and error are redirected to console by init,
34 # and the console is the controlling terminal.
36 # Note that almost all of the user-configurable behavior is no longer in
37 # this file, but rather in /etc/defaults/rc.conf. Please check that file
38 # first before contemplating any changes here. If you do need to change
39 # this file for some reason, we would like to know about it.
41 stty status '^T'
43 # Set shell to ignore SIGINT (2), but not children;
44 # shell catches SIGQUIT (3) and returns to single user.
46 trap : 2
47 trap "echo 'Boot interrupted'; exit 1" 3
49 HOME=/
50 PATH=/sbin:/bin:/usr/sbin:/usr/bin
51 export HOME PATH
53 if [ "$1" = autoboot ]; then
54 autoboot=yes
55 _boot="faststart"
56 rc_fast=yes # run_rc_command(): do fast booting
57 else
58 autoboot=no
59 _boot="quietstart"
62 dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
63 if [ ${dlv:=0} -ne 0 -o -f /etc/diskless ]; then
64 sh /etc/rc.initdiskless
67 # Run these after determining whether we are booting diskless in order
68 # to minimize the number of files that are needed on a diskless system,
69 # and to make the configuration file variables available to rc itself.
71 . /etc/rc.subr
72 load_rc_config 'XXX'
74 skip="-s nostart"
75 if [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ]; then
76 skip="$skip -s nojail"
77 if [ "$early_late_divider" = "FILESYSTEMS" ]; then
78 early_late_divider=NETWORKING
82 # Do a first pass to get everything up to $early_late_divider so that
83 # we can do a second pass that includes $local_startup directories
85 files=`rcorder ${skip} /etc/rc.d/* 2>/dev/null`
87 for _rc_elem in ${files}; do
88 run_rc_script ${_rc_elem} ${_boot}
90 case "$_rc_elem" in
91 */${early_late_divider}) break ;;
92 esac
93 done
95 unset files local_rc
97 # Now that disks are mounted, for each dir in $local_startup
98 # search for init scripts that use the new rc.d semantics.
100 case ${local_startup} in
101 [Nn][Oo] | '') ;;
102 *) find_local_scripts_new ;;
103 esac
105 files=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null`
106 _skip_early=1
107 for _rc_elem in ${files}; do
108 case "$_skip_early" in
109 1) case "$_rc_elem" in
110 */${early_late_divider}) _skip_early=0 ;;
111 esac
112 continue
114 esac
116 run_rc_script ${_rc_elem} ${_boot}
117 done
119 echo ''
120 date
121 exit 0