freebsd-dev/etc/rc.d/archdep
Mike Makonnen 3dce702718 Simplify this script with the added bonus that the bit about i386
initialization doesn't get printed unless ibcs2_enable is set.
2008-06-22 15:57:50 +00:00

46 lines
604 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: archdep
# REQUIRE: mountcritremote
# KEYWORD: nojail
. /etc/rc.subr
name=archdep
start_cmd="archdep_start"
stop_cmd=":"
archdep_start()
{
local _arch
_arch=`${SYSCTL_N} hw.machine_arch`
case $_arch in
i386)
# SCO binary emulation
#
if checkyesno ibcs2_enable; then
echo -n 'Initial i386 initialization:'
echo -n ' ibcs2'
load_kld ibcs2
case ${ibcs2_loaders} in
[Nn][Oo])
;;
*)
for i in ${ibcs2_loaders}; do
load_kld ibcs2_$i
done
;;
esac
echo '.'
fi
;;
esac
}
load_rc_config $name
run_rc_command "$1"