summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-09-13 02:34:06 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-09-13 02:34:06 +0000
commitd0df19534add1e72b7772348c7035b6c2f6f0921 (patch)
tree306e19584120c38166647b2434d8aa99239c3be6 /perl-install/harddrake
parent99532fd73e74811dd2352c31388c23272d747a53 (diff)
downloaddrakx-d0df19534add1e72b7772348c7035b6c2f6f0921.tar
drakx-d0df19534add1e72b7772348c7035b6c2f6f0921.tar.gz
drakx-d0df19534add1e72b7772348c7035b6c2f6f0921.tar.bz2
drakx-d0df19534add1e72b7772348c7035b6c2f6f0921.tar.xz
drakx-d0df19534add1e72b7772348c7035b6c2f6f0921.zip
explain why some hw classes are not probed on bootstrapping
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r--perl-install/harddrake/data.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index e0c6bc1e1..adb82156f 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -192,6 +192,7 @@ our @tree =
icon => "modem.png",
configurator => "$sbindir/drakconnect",
detector => sub { require network::isdn; my $isdn = network::isdn::detect_backend($modules_conf); if_(@$isdn, f(@$isdn)) },
+ # we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},
@@ -215,6 +216,7 @@ our @tree =
icon => "modem.png",
configurator => "$sbindir/drakconnect",
detector => sub { detect_devices::getModem($modules_conf) },
+ # we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},
@@ -228,6 +230,7 @@ our @tree =
my $a = network::adsl::adsl_detect();
$a ? f(grep { $_ } values %$a) : ();
},
+ # we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},
@@ -255,6 +258,7 @@ our @tree =
icon => "hw_printer.png",
configurator => "$sbindir/printerdrake",
detector => sub { require printer::detect; printer::detect::local_detect() },
+ # we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},