diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-05-02 06:36:19 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-05-02 06:36:19 +0200 |
commit | dbfcaacf40ca356d7623408b4bfca828f8bd880d (patch) | |
tree | 9b104bd4188134bda0b52f0a40dde7537a531c72 /hooks | |
parent | 3a764f2b15c44b17d098629de5eacdd164b5ddc7 (diff) | |
download | mkinitcpio-dbfcaacf40ca356d7623408b4bfca828f8bd880d.tar.gz mkinitcpio-dbfcaacf40ca356d7623408b4bfca828f8bd880d.tar.xz |
Misc changes to module detection - tpowa
Config file comments
mdassemble in raid hook + additional raid help
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@40 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/filesystems | 2 | ||||
-rw-r--r-- | hooks/raid | 6 | ||||
-rw-r--r-- | hooks/usb | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/hooks/filesystems b/hooks/filesystems index c676832..0990b4c 100644 --- a/hooks/filesystems +++ b/hooks/filesystems @@ -9,7 +9,7 @@ run_hook () msg "Attempting to create root device '${root}'" dev_t=$( /bin/parseblock "${root}" ) if [ "x${dev_t}" != "x" ]; then - /bin/mknod "${root}" b ${dev_t} + /bin/mknod "${root}" b ${dev_t} >/dev/null 2>&1 eval $( /bin/fstype < "${root}" ) else FSTYPE="unknown" @@ -1,7 +1,7 @@ # vim: set ft=sh: -# kinit handles md/raid assembly we just need modules run_hook () { - #TODO - /bin/modprobe -aq raid0 raid1 raid2 raid5 raid6 + #TODO scan for these somehow... + /bin/modprobe -aq raid0 raid1 raid2 raid5 raid6 >/dev/null 2>&1 + /bin/mdassemble ${md} ${raid} } @@ -3,5 +3,7 @@ run_hook () { msg -n "Loading usb modules..." /bin/modprobe -aq $(/bin/cat /sys/bus/usb/devices/*/modalias) >/dev/null 2>&1 + #allow 'usbdelay' on the kernel param line + /bin/sleep ${usbdelay:-5} msg "done." } |