diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-08-21 09:26:08 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-08-21 09:26:08 +0200 |
commit | dc2cd6ad3808f39daf2e813da9c4de39523d5717 (patch) | |
tree | e592bf53aab92e22238e612aede6ea7ffb16ea5a /install/scsi | |
parent | 9ef825cedd8228957f9bdd8df7ae543afd7e0001 (diff) | |
download | mkinitcpio-dc2cd6ad3808f39daf2e813da9c4de39523d5717.tar.gz mkinitcpio-dc2cd6ad3808f39daf2e813da9c4de39523d5717.tar.xz |
Do not include everything from /block/ in the SCSI hook.
Fixes FS#19666
Diffstat (limited to 'install/scsi')
-rw-r--r-- | install/scsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/scsi b/install/scsi index 4183cd3..12eaad0 100644 --- a/install/scsi +++ b/install/scsi @@ -3,7 +3,7 @@ install () { MODULES=" $(checked_modules "/scsi/" | grep -ve "imm" -e "pdc_adma" -e "ahci" -e "ata" -e "pcmcia" -e "ide") - $(checked_modules "/block/" | grep -v "sx8") + $(checked_modules "/block/" | grep -e "cciss" -e "cpqarray") $(checked_modules "/fusion/")" MODULES=$(echo ${MODULES}) #trim whitespace |