diff options
Diffstat (limited to 'install/scsi-auto')
-rw-r--r-- | install/scsi-auto | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/install/scsi-auto b/install/scsi-auto new file mode 100644 index 0000000..45b93ef --- /dev/null +++ b/install/scsi-auto @@ -0,0 +1,19 @@ +# vim: set ft=sh: + +install () +{ + MODULES=" $(auto_modules "/scsi/" | grep -v "ata") + $(auto_modules "/block/") + $(auto_modules "/fusion/")" + BINARIES="" + FILES="" + SCRIPT="scsi" +} + +help () +{ +cat<<HELPEOF + This hook loads the necessary modules for an scsi root device. + Detection will take place at runtime. +HELPEOF +} |