405c3050f1
iBCS2 was disconnected from the build in 2015 (see r291419) bsdconfig parts submitted by dteske. Reviewed by: kib (previous version) Sponsored by: The FreeBSD Foundation
27 lines
298 B
Bash
Executable File
27 lines
298 B
Bash
Executable File
#!/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
|
|
esac
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|