mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-09-05 00:35:35 +00:00
Minimum kernel version is 2.6.5, not 2.6.0.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5481 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -1904,9 +1904,9 @@ sub initialize_kernel_version
|
||||
@kernel_version = ($1, $2, $3, $4);
|
||||
chomp($kernel_arch = `uname -m`);
|
||||
|
||||
# We only support kernels >= 2.6.0
|
||||
if (!kernel_version_at_least(2, 6, 0)) {
|
||||
print "Kernel version is unsupported (too old, >= 2.6.0 needed)\n";
|
||||
# We only support kernels >= 2.6.5
|
||||
if (!kernel_version_at_least(2, 6, 5)) {
|
||||
print "Kernel version is unsupported (too old, >= 2.6.5 needed)\n";
|
||||
exit -1;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user