From 1a6a27e0a4142d309601b08425447cbb02c04fb5 Mon Sep 17 00:00:00 2001 From: dougb Date: Sun, 10 Jul 2011 23:47:03 +0000 Subject: Make sure we load kernel modules from the same path as the running kernel --- etc/rc.d/kld | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'etc/rc.d') diff --git a/etc/rc.d/kld b/etc/rc.d/kld index 946ec69..cd2fbab 100755 --- a/etc/rc.d/kld +++ b/etc/rc.d/kld @@ -41,11 +41,24 @@ kld_start() { [ -n "$kld_list" ] || return - local _kld + local _kernel_path _module_path _kld _path + + _kernel_path=`$SYSCTL_N kern.bootfile` + _kernel_path="${_kernel_path%/*}" + + _module_path=`$SYSCTL_N kern.module_path` + _module_path="${_module_path#*\;}" + _module_path="$_kernel_path `ltr $_module_path \; ' '`" echo 'Loading kernel modules:' for _kld in $kld_list ; do - load_kld -e ${_kld}.ko $_kld + for _path in $_module_path ; do + if [ -x "${_path}/${_kld}.ko" ]; then + load_kld -e ${_kld}.ko ${_path}/${_kld}.ko + continue 2 + fi + done + warn "${_kld}.ko not found in $_module_path" done } -- cgit v1.1