diff options
author | maximilian attems <maks@debian.org> | 2006-03-08 17:54:00 +0100 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-03-08 17:54:00 +0100 |
commit | f5e3b39c44184f553d750ea889fb30eb3978375c (patch) | |
tree | a59e07463a46605d53cca477bdbb69f610e84364 | |
parent | 65391c38c52dcbc0fab11340fd59ed83089d5cd5 (diff) | |
download | initramfs-tools-f5e3b39c44184f553d750ea889fb30eb3978375c.tar.gz initramfs-tools-f5e3b39c44184f553d750ea889fb30eb3978375c.zip |
really add the dasd modules;
remove superflous ';'
-rw-r--r-- | hook-functions | 5 | ||||
-rwxr-xr-x | scripts/local-top/udev_helper | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/hook-functions b/hook-functions index 90986cb..03eb87d 100644 --- a/hook-functions +++ b/hook-functions @@ -188,6 +188,11 @@ auto_add_modules() manual_add_modules "${x}" done ;; + dasd) + for x in dasd_eckd_mod dasd_fba_mod; do + manual_add_modules "${x}" + done + ;; *) auto_add_modules base auto_add_modules net diff --git a/scripts/local-top/udev_helper b/scripts/local-top/udev_helper index 8ae47d2..22cd9f7 100755 --- a/scripts/local-top/udev_helper +++ b/scripts/local-top/udev_helper @@ -92,4 +92,3 @@ scsi) fi ;; esac -;; |