mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
rc.d/kld: Print the kernel modules being loaded
PR: 282269 MFC after: 2 weeks
This commit is contained in:
parent
7ed159c6cc
commit
152382e661
1 changed files with 3 additions and 1 deletions
|
|
@ -44,10 +44,12 @@ kld_start()
|
|||
|
||||
local _kld
|
||||
|
||||
echo 'Loading kernel modules:'
|
||||
echo -n 'Loading kernel modules: '
|
||||
for _kld in $kld_list ; do
|
||||
load_kld -e ${_kld}.ko $_kld
|
||||
echo -n "${_kld} "
|
||||
done
|
||||
echo
|
||||
}
|
||||
|
||||
load_rc_config $name
|
||||
|
|
|
|||
Loading…
Reference in a new issue