mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-14 08:34:39 +00:00
system: refactor previous for single kldload spot
This commit is contained in:
parent
af8e12f550
commit
fbfb00191b
@ -1450,22 +1450,22 @@ function system_kernel_configure($verbose = false)
|
||||
'pfsync',
|
||||
);
|
||||
|
||||
foreach ($mods as $mod) {
|
||||
mwexecf('/sbin/kldload %s', $mod, true);
|
||||
}
|
||||
|
||||
if (!empty($config['system']['crypto_hardware'])) {
|
||||
log_error(sprintf('Loading %s cryptographic accelerator module.', $config['system']['crypto_hardware']));
|
||||
mwexecf('/sbin/kldload %s', $config['system']['crypto_hardware'], true);
|
||||
$mods[] = $config['system']['crypto_hardware'];
|
||||
}
|
||||
if (isset($config['system']['cryptodev_enable'])) {
|
||||
log_error('Loading cryptodev kernel module.');
|
||||
mwexecf('/sbin/kldload %s', 'cryptodev', true);
|
||||
$mods[] = 'cryptodev';
|
||||
}
|
||||
|
||||
if (!empty($config['system']['thermal_hardware'])) {
|
||||
log_error(sprintf('Loading %s thermal monitor module.', $config['system']['thermal_hardware']));
|
||||
mwexecf('/sbin/kldload %s', $config['system']['thermal_hardware'], true);
|
||||
$mods[] = $config['system']['thermal_hardware'];
|
||||
}
|
||||
|
||||
foreach ($mods as $mod) {
|
||||
mwexecf('/sbin/kldload %s', $mod, true);
|
||||
}
|
||||
|
||||
if ($verbose) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user