57e561c083
as part of rc. Doing this, and the sourcing of rc.subr after we have determined if we are booting diskless (and correspondingly run rc.initdiskless if necessary) are safe, and actually allow fewer files to be needed on the diskless box. This also allows variables from the configuration to be available to rc itself, such as ... Add a variable to rc.conf, early_late_divider, which designates the script which separates the early and late stages of the boot process. Default this to mountcritlocal, and add text to etc/defaults/rc.conf, rc.conf(5) and diskless(8) which describes how and why one might want to change this. Reviewed by: brooks
68 lines
1.0 KiB
Bash
68 lines
1.0 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: dumpon
|
|
# BEFORE: disks savecore initrandom
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dumpon"
|
|
start_cmd="dumpon_start"
|
|
stop_cmd="dumpon_stop"
|
|
|
|
dumpon_try()
|
|
{
|
|
if /sbin/dumpon -v "${1}" ; then
|
|
# Make a symlink in devfs for savecore
|
|
ln -fs "${1}" /dev/dumpdev
|
|
return 0
|
|
fi
|
|
return 1
|
|
}
|
|
|
|
dumpon_start()
|
|
{
|
|
# Enable dumpdev so that savecore can see it. Enable it
|
|
# early so a crash early in the boot process can be caught.
|
|
#
|
|
case ${dumpdev} in
|
|
[Nn][Oo] | '')
|
|
;;
|
|
[Aa][Uu][Tt][Oo])
|
|
dev=$(/bin/kenv -q dumpdev)
|
|
if [ -n "${dev}" ] ; then
|
|
dumpon_try "${dev}"
|
|
return $?
|
|
fi
|
|
while read dev mp type more ; do
|
|
[ "${type}" = "swap" ] || continue
|
|
[ -c "${dev}" ] || continue
|
|
dumpon_try "${dev}" 2>/dev/null && return 0
|
|
done </etc/fstab
|
|
echo "No suitable dump device was found." 1>&2
|
|
return 1
|
|
;;
|
|
*)
|
|
dumpon_try "${dumpdev}"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
dumpon_stop()
|
|
{
|
|
case ${dumpdev} in
|
|
[Nn][Oo] | '')
|
|
;;
|
|
*)
|
|
rm -f /dev/dumpdev
|
|
/sbin/dumpon -v off
|
|
;;
|
|
esac
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|