summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/service_harddrake
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-xperl-install/standalone/service_harddrake8
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index dc230a540..0c653b9bc 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -10,6 +10,7 @@ use common;
use interactive;
use detect_devices;
use harddrake::data;
+use harddrake::autoconf;
use harddrake::sound;
use modules;
use Storable qw(store retrieve);
@@ -30,7 +31,10 @@ my $prev_kernel = { getVarsFromSh("$hw_sysconfdir/kernel") }->{KERNEL};
my $curr_kernel = c::kernel_version();
$curr_kernel =~ s/(^\d+\.\d+).*/$1/;
setVarsInSh("$hw_sysconfdir/kernel", { KERNEL => $curr_kernel });
-harddrake::autoconf::mouse_conf($modules_conf) if $curr_kernel ne $prev_kernel;
+if ($curr_kernel ne $prev_kernel) {
+ log::explanations("Autoconfiguring mouse since we switched between 2.4.x and 2.6.x kernels");
+ harddrake::autoconf::mouse_conf($modules_conf) ;
+}
if (find { $_->{driver} =~ /Card:NVIDIA/ } detect_devices::probeall()) {
if (find { -e join('', "/lib/modules/", c::kernel_version(), "/kernel/drivers/$_") } map { ("video/$_", "char/$_") } qw(NVdriver nvidia.o nvidia.o.gz nvidia.ko nvidia.ko.gz)) {
@@ -125,11 +129,11 @@ foreach my $hw_class (@harddrake::data::tree) {
modules::load_category($modules_conf, 'bus/usb');
$modules_conf->write;
} elsif ($Ident eq "VIDEO") {
- require harddrake::autoconf;
harddrake::autoconf::xconf($modules_conf, {});
next;
} elsif ($Ident eq "MOUSE") {
harddrake::autoconf::mouse_conf($modules_conf);
+ next;
}
next if $is_globetrotter && !$hw_class->{automatic};