6f3274197b
you booted from, unless /boot/kernel already exists and is not a symlink. This should only affect people like me who juggle multiple kernels and have KODIR = /boot/${KERN_IDENT} in /etc/make.conf to keep them apart.
26 lines
358 B
Bash
26 lines
358 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: kernel
|
|
# REQUIRE: mountcritremote
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="kernel"
|
|
start_cmd="kernel_start"
|
|
stop_cmd=":"
|
|
|
|
kernel_start()
|
|
{
|
|
bootdir=$(dirname $(sysctl -n kern.bootfile))
|
|
if [ ! -e /boot/kernel -o -h /boot/kernel ] ; then
|
|
ln -hfs ${bootdir} /boot/kernel
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|