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 | |
parent | 5489c2f911a1259e9ad7ccdb5b90af529f912ffa (diff) | |
download | initramfs-tools-b15ec51af8521331dc74814d3582fdbb492589d0.tar.gz initramfs-tools-b15ec51af8521331dc74814d3582fdbb492589d0.zip |
hook-functions: Add the new firewire modules.
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | hook-functions | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 5d42ec6..a60168d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,9 @@ initramfs-tools (0.91) unstable; urgency=low * mkinitramfs: Kick empty dir modules. * hook-functions: Factor sys_walk_mod_add() out of dep_add_modules(). * init: Fix mount options invocation for klibc mount. + * hook-functions: Add the new firewire modules. - -- maximilian attems <maks@debian.org> Tue, 21 Aug 2007 17:08:48 +0200 + -- maximilian attems <maks@debian.org> Thu, 23 Aug 2007 14:31:59 +0200 initramfs-tools (0.90) unstable; urgency=low 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 } |