diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-03-22 00:11:27 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-03-22 00:11:27 +0000 |
commit | 437378b4754e98222f569b861279ee7414888f2c (patch) | |
tree | 27d7d4d22ef1d1c9acfc3e75ce5c01fa0b04e150 /perl-install/modules.pm | |
parent | 929f41b4b0e5483a8fd0bc5d4a52e3671606379d (diff) | |
download | drakx-437378b4754e98222f569b861279ee7414888f2c.tar drakx-437378b4754e98222f569b861279ee7414888f2c.tar.gz drakx-437378b4754e98222f569b861279ee7414888f2c.tar.bz2 drakx-437378b4754e98222f569b861279ee7414888f2c.tar.xz drakx-437378b4754e98222f569b861279ee7414888f2c.zip |
no imm,ppa PPC, scan mesh,mac53c94 scsi only, pmac should have been mace
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 940dd45b0..19c3bbe34 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -640,13 +640,13 @@ sub load_thiskind { my @try_modules = ( if_($type =~ /scsi/, - 'imm', 'ppa', + if_(arch() !~ /ppc/, 'imm', 'ppa'), if_(detect_devices::usbZips(), 'usb-storage'), ), if_(arch() =~ /ppc/, - 'mesh', 'mac53c94', - if_($type =~ /net/, 'bmac', 'gmac', 'pmac'), - if_($type =~ /sound/, 'dmasound'), + if_($type =~ /scsi/, 'mesh', 'mac53c94'), + if_($type =~ /net/, 'bmac', 'gmac', 'mace'), + if_($type =~ /sound/, 'dmasound'), ), ); grep { |