108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
hostname:
echo "MRC:$@> Setting to ${HOSTNAME}."
hostname ${HOSTNAME}
kld: bootfs
.if defined(KLD_LIST)
echo "MRC:$@> Loading kernel modules: ${KLD_LIST}" ;\
kldload -n ${KLD_LIST}
.endif
# ldconfig
.for path in ${LDCONFIG_PATHS} /etc/ld-elf.so.conf
.if exists(${path})
ldc+=${path}
.endif
|
|
|
>
>
>
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
hostname:
echo "MRC:$@> Setting to ${HOSTNAME}."
hostname ${HOSTNAME}
kld: bootfs
.if defined(KLD_LIST)
echo "MRC:$@> Loading kernel modules: ${KLD_LIST}"
. for KLD in ${KLD_LIST}
kldload -n ${KLD} || echo "MRC:$@> Failed to load module: ${KLD}"
. endfor
true
.endif
# ldconfig
.for path in ${LDCONFIG_PATHS} /etc/ld-elf.so.conf
.if exists(${path})
ldc+=${path}
.endif
|