diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-04-20 14:22:45 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-04-20 14:22:45 +0000 |
commit | 28fa68ac70d63a1e3c5201e1b48e0fe7e4fc70fd (patch) | |
tree | f6bce1b83ad7196165ba5d07626e587e88d3f96a /convert/uniquify-modalias.pl | |
parent | 398ee1d7de4e6f9570325f53ba402e16b3b2acef (diff) | |
download | ldetect-lst-28fa68ac70d63a1e3c5201e1b48e0fe7e4fc70fd.tar ldetect-lst-28fa68ac70d63a1e3c5201e1b48e0fe7e4fc70fd.tar.gz ldetect-lst-28fa68ac70d63a1e3c5201e1b48e0fe7e4fc70fd.tar.bz2 ldetect-lst-28fa68ac70d63a1e3c5201e1b48e0fe7e4fc70fd.tar.xz ldetect-lst-28fa68ac70d63a1e3c5201e1b48e0fe7e4fc70fd.zip |
fix preferring pata_marvell over ahci
Diffstat (limited to 'convert/uniquify-modalias.pl')
-rwxr-xr-x | convert/uniquify-modalias.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/convert/uniquify-modalias.pl b/convert/uniquify-modalias.pl index c93e4a40..b54ab2ad 100755 --- a/convert/uniquify-modalias.pl +++ b/convert/uniquify-modalias.pl @@ -16,7 +16,6 @@ my @ignored_modules = ( ); my @preferred_modules = ( "pata_marvell", #- prefer over ahci since ahci need marvel_enabled=1 to make it work (#43975) - "ahci", #- prefer over ata_piix (install will still try both), depends on BIOS settins "bcm43xx", #- prefer over b43, b43legacy and ssb "dpt_i2o", #- prefer over i2o_core "dmfe", #- prefer over tulip, it only lists supported devices @@ -32,6 +31,11 @@ my @preferred_modules = ( "sx", #- prefer over specialix (sx matches subvendors) ); my @depreciated_modules = ( + #- defer *piix over ahci (install will still try both ahci and ata_piix), depends on BIOS settings + #- do it without explicitely listing ahci in preferred modules, + #- to allow ahci to be overriden by pata_marvell + #- ata_piix will still be preferred over piix, because ata_piix is in the disk/sata preferred category + "ata_piix", "piix", "gspca", #- kernel hackers value it as poorly coded "ir_usb", #- false positive because of pattern "usb_storage", #- false positive because we don't use subvendors/subdevices |