diff options
author | maximilian attems <maks@debian.org> | 2006-07-20 17:41:31 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-07-20 17:41:31 +0200 |
commit | 475bcbc9d6eefe90de6efe424bfb5bcca999fbc7 (patch) | |
tree | 2475f88bfdbdfc9508a30e84939ffa3cf4b8d9ae /hooks | |
parent | 17d01b3434dac54ace5991029ed069b3d185ffd2 (diff) | |
download | initramfs-tools-475bcbc9d6eefe90de6efe424bfb5bcca999fbc7.tar.gz initramfs-tools-475bcbc9d6eefe90de6efe424bfb5bcca999fbc7.zip |
- drop md scripts
- pump klibc dep
- use resume klibc-utils bin
- remove some klibc binaries
- use nfsmount
Diffstat (limited to 'hooks')
-rwxr-xr-x | hooks/md | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/hooks/md b/hooks/md deleted file mode 100755 index df2abc8..0000000 --- a/hooks/md +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -PREREQ="" - -prereqs() -{ - echo "$PREREQ" -} - -case $1 in -prereqs) - prereqs - exit 0 - ;; -esac - -if [ ! -x /sbin/mdadm ]; then - exit 0 -fi - -. /usr/share/initramfs-tools/hook-functions - -copy_exec /sbin/mdadm /sbin -copy_exec /sbin/mdrun /sbin - -for x in md linear raid0 raid1 raid5 raid6 raid10; do - manual_add_modules ${x} -done |