mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-09-02 15:25:38 +00:00
Improve the format of /etc/sysconfig/lm_sensors as generated by
sensors-detect. The new format is more flexible and less error-prone. The old format is still included for compatibility. git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5588 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -5348,9 +5348,20 @@ sub main
|
||||
# This file is sourced by /etc/init.d/lm_sensors and defines the modules to
|
||||
# be loaded/unloaded.
|
||||
#
|
||||
# The format of this file is a shell script that simply defines the modules
|
||||
# in order as normal variables with the special names:
|
||||
# The format of this file is a shell script that simply defines variables:
|
||||
# HWMON_MODULES for hardware monitoring driver modules, and optionally
|
||||
# BUS_MODULES for any required bus driver module (for example for I2C or SPI).
|
||||
|
||||
EOT
|
||||
print SYSCONFIG "BUS_MODULES=\"", join(" ", @{$bus_modules}), "\"\n"
|
||||
if @{$bus_modules};
|
||||
print SYSCONFIG "HWMON_MODULES=\"", join(" ", @{$hwmon_modules}), "\"\n";
|
||||
|
||||
print SYSCONFIG <<'EOT';
|
||||
|
||||
# For compatibility reasons, modules are also listed individually as variables
|
||||
# MODULE_0, MODULE_1, MODULE_2, etc.
|
||||
# You should use BUS_MODULES and HWMON_MODULES instead if possible.
|
||||
|
||||
EOT
|
||||
my $i = 0;
|
||||
|
Reference in New Issue
Block a user