summaryrefslogtreecommitdiffstats
path: root/install/scsi
diff options
context:
space:
mode:
Diffstat (limited to 'install/scsi')
-rw-r--r--install/scsi33
1 files changed, 14 insertions, 19 deletions
diff --git a/install/scsi b/install/scsi
index 9a97a8c..2641255 100644
--- a/install/scsi
+++ b/install/scsi
@@ -1,25 +1,20 @@
-# vim: set ft=sh:
+#!/bin/bash
-build()
-{
- MODULES=" $(checked_modules "/scsi/" | grep -ve "imm" -e "pdc_adma" -e "ahci" -e "ata" -e "pcmcia" -e "ide")
- $(checked_modules "/block/" | grep -e "cciss" -e "cpqarray" -e "DAC960")
- $(checked_modules "/fusion/")"
+build(){
- MODULES=$(echo ${MODULES}) #trim whitespace
- if [ -n "${MODULES}" ]; then
- MODULES="${MODULES} sd_mod"
- fi
- BINARIES=""
- FILES=""
- SCRIPT=""
+ MODULES="$(checked_modules "/scsi/" | grep -vE '(imm|ata|pcmcia)')
+ $(checked_modules "/block/" | grep -E '(cciss|cpqarray|DAC960)')
+ $(checked_modules "/fusion/")"
+
+ [[ $MODULES ]] && MODULES+=" sd_mod"
}
-help ()
-{
-cat<<HELPEOF
- This hook loads the necessary modules for an scsi root device.
- Detection will take place at runtime. To minimize the modules
- in the image, add the autodetect hook too.
+help() {
+ cat<<HELPEOF
+This hook loads the necessary modules for an scsi root device. Detection will
+take place at runtime. To minimize the modules in the image, add the autodetect
+hook too.
HELPEOF
}
+
+# vim: set ft=sh ts=4 sw=4 et: