diff options
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/autoconf.pm | 8 | ||||
-rw-r--r-- | perl-install/harddrake/data.pm | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm index 054d8879b..e2e48b27c 100644 --- a/perl-install/harddrake/autoconf.pm +++ b/perl-install/harddrake/autoconf.pm @@ -24,4 +24,12 @@ sub network_conf { network::network::easy_dhcp($obj->{modules_conf}, $obj->{netc}, $obj->{intf}) and $obj->{netcnx}{type} = 'lan'; } +sub mouse_conf { + my ($modules_conf) = @_; + log::explanations("Autoconfiguring mouse since we switched between 2.4.x and 2.6.x kernels"); + require do_pkgs; + require mouse; + mouse::write_conf(do_pkgs_standalone->new, $modules_conf, mouse::detect($modules_conf), 1); +} + 1; diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index dd3fe705d..7b2153eba 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -272,6 +272,7 @@ our @tree = mouse::detect($modules_conf); }, checked_on_boot => 1, + automatic => 1, }, { |