From f5b64c37005cb2aa89563efe7f4d965c0a1d7440 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Tue, 23 May 2000 12:34:42 +0000 Subject: *** empty log message *** --- perl-install/modules.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'perl-install/modules.pm') diff --git a/perl-install/modules.pm b/perl-install/modules.pm index d4e2bcddd..881d4f512 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -553,9 +553,11 @@ sub load_thiskind($;&$) { -d "/proc/scsi/usb" or unload("usb-storage"); } #- probe for parport SCSI. - foreach ("imm", "ppa") { - eval { load($_, $type) }; - last if !$@; + if (arch() !~ /sparc|alpha/) { + foreach ("imm", "ppa") { + eval { load($_, $type) }; + last if !$@; + } } if (my ($c) = pci_probing::main::probe('AUDIO')) { add_alias("sound", $c->[1]) if pci_probing::main::check($c->[1]); -- cgit v1.2.1