summaryrefslogtreecommitdiff
path: root/hooks/md
blob: 64b8f9e3dfcb7d4c2c59db80692012f43447c7ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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 raid0 raid1 raid5 raid6; do
        manual_add_modules ${x}
done