diff options
author | maximilian attems <maks@debian.org> | 2007-08-23 14:32:55 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-08-23 14:32:55 +0200 |
commit | b15ec51af8521331dc74814d3582fdbb492589d0 (patch) | |
tree | d64a6358d0130f924f478140e66081bdca925f0f /hook-functions | |
parent | 5489c2f911a1259e9ad7ccdb5b90af529f912ffa (diff) | |
download | initramfs-tools-b15ec51af8521331dc74814d3582fdbb492589d0.tar.gz initramfs-tools-b15ec51af8521331dc74814d3582fdbb492589d0.zip |
hook-functions: Add the new firewire modules.
Diffstat (limited to 'hook-functions')
-rw-r--r-- | hook-functions | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hook-functions b/hook-functions index 0a50051..61af0a5 100644 --- a/hook-functions +++ b/hook-functions @@ -300,11 +300,17 @@ auto_add_modules() block) copy_modules_dir kernel/drivers/block ;; + # FIXME: can be removed after Lenny release ieee1394) for x in ohci1394 sbp2; do manual_add_modules "${x}" done ;; + firewire) + for x in firewire-ohci firewire-sbp2; do + manual_add_modules "${x}" + done + ;; i2o) for x in i2o_block; do manual_add_modules "${x}" @@ -325,6 +331,7 @@ auto_add_modules() auto_add_modules i2o auto_add_modules dasd auto_add_modules ieee1394 + auto_add_modules firewire ;; esac } |