diff options
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/autoconf.pm | 3 | ||||
-rw-r--r-- | perl-install/harddrake/data.pm | 1 | ||||
-rw-r--r-- | perl-install/harddrake/sound.pm | 1 | ||||
-rw-r--r-- | perl-install/harddrake/v4l.pm | 2 |
4 files changed, 1 insertions, 6 deletions
diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm index 8cbbb9b4c..7f2c105d9 100644 --- a/perl-install/harddrake/autoconf.pm +++ b/perl-install/harddrake/autoconf.pm @@ -1,7 +1,6 @@ package harddrake::autoconf; use common; -use any; sub xconf { my ($modules_conf, $o) = @_; @@ -9,10 +8,10 @@ sub xconf { log::l('automatic XFree configuration'); require Xconfig::default; + require do_pkgs; $o->{raw_X} = Xconfig::default::configure(do_pkgs_standalone->new); require Xconfig::main; - require do_pkgs; Xconfig::main::configure_everything_auto_install($o->{raw_X}, do_pkgs_standalone->new, {}, { allowFB => 1 }); modules::load_category($modules_conf, 'various/agpgart'); diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 2e3506bae..c58b83aca 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -267,7 +267,6 @@ our @tree = configurator => "$sbindir/drakconnect", detector => sub { require list_modules; - require network::ethernet; my @net_modules = list_modules::category2modules(list_modules::ethernet_categories()); f(grep { $_->{media_type} && $_->{media_type} =~ /^NETWORK/ diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index e1651f23c..4adb6e341 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -16,7 +16,6 @@ package harddrake::sound; use strict; use common; -use interactive; use run_program; use modules; use list_modules; diff --git a/perl-install/harddrake/v4l.pm b/perl-install/harddrake/v4l.pm index aa005b664..8e2231a05 100644 --- a/perl-install/harddrake/v4l.pm +++ b/perl-install/harddrake/v4l.pm @@ -3,9 +3,7 @@ package harddrake::v4l; use strict; use common; -use interactive; use detect_devices; -use lang; use log; use modules; |