aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/kernel
blob: 9645aa74ce4ca75dfb517f5e2bf8040268b4163e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
# $FreeBSD: src/etc/rc.d/kernel,v 1.2 2006/07/30 12:54:37 mckay Exp $
#

# 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 [ "$bootdir" != /boot/kernel ] ; then
		if [ ! -e /boot/kernel -o -h /boot/kernel ] ; then
			ln -hfs ${bootdir} /boot/kernel
		fi
	fi
}

load_rc_config $name
run_rc_command "$1"