summaryrefslogtreecommitdiffstats
path: root/tools/serial_probe
Commit message (Expand)AuthorAgeFilesLines
* re-sync after the big svn lossPascal Rigaux2007-04-251-1/+0
* MandrakeSoft -> MandrakesoftPascal Rigaux2004-07-201-1/+1
* fix serial probe not detecting legacy micePascal Rigaux2004-02-101-1/+2
* alter detection sequence to better follow the standard, thus enablingThierry Vignaud2003-11-211-4/+7
* remove special mouse handling (not needed anymore)Thierry Vignaud2003-11-211-22/+0
* adatp to latest kudzu api regarding serial detection (number suite => logicalThierry Vignaud2003-11-211-1/+23
* - sync with rhThierry Vignaud2003-11-212-10/+29
* - sync with latest kudzuThierry Vignaud2003-11-191-104/+129
* add proper dependancies (thanks gcc -MM)Thierry Vignaud2003-10-311-0/+4
* white space sync whith rhThierry Vignaud2003-10-311-140/+142
* do not output debug statements by defaultThierry Vignaud2003-10-311-2/+1
* merge in with rh:Thierry Vignaud2003-10-315-173/+123
* roll back some changes from PPC beta - OldWorld vs NewWorld bootloaderStew Benedict2001-07-181-0/+8
* integrate fg's fixes for includesGuillaume Cottenceau2001-04-192-0/+3
* no_commentPascal Rigaux2000-04-131-0/+1
* *** empty log message ***Francois Pons2000-04-075-0/+1422
nnect;
+use netconnect;
use mouse;
use modules;
use lang;
@@ -497,7 +497,7 @@ such as ``mybox.mylab.myco.com''."),
#- (dam's)
if (!$::beginner && $o->ask_yesorno([ _("Modem Configuration") ],
_("Do you want to configure a ISDN connection for your system?"), 0)) {
- Netconnect::isdn($o->{prefix}, $o->{isdn}, $o, bool($o->{pcmcia}));
+ Netconnect::detect_isdn($o->{prefix}, $o->{isdn}, $o, bool($o->{pcmcia}));
}
}
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 6bc3ac812..77091048d 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -96,7 +96,8 @@ arch() =~ /^sparc/ ? (
"sunrpc" => "sunrpc",
}],
[ 'isdn', {
- "hisax" => "hisax",
+ "hisax" => "hisax",
+ "b1pci" => "b1pci",
}],
[ 'scsi', {
arch() =~ /^sparc/ ? (
@@ -538,9 +539,9 @@ sub load_thiskind {
sub get_that_type {
my ($type, $pcic) = @_;
-
- grep {
- my $l = $drivers{$_->{driver}};
+
+ grep {
+ my $l = $drivers{$_->{driver}};
$l && $l->{type} eq $type && detect_devices::check($_);
} detect_devices::probeall('', $pcic);
}