diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-04-27 19:08:47 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-04-27 19:08:47 +0200 |
commit | 2ed876b6b5c7b431caf5c452d6ee4a67241c4d01 (patch) | |
tree | d8e3c850df5bc1a7f262b810fbf273761eb15266 /hooks/ide | |
parent | b3002a0c9ec4f3a299b5756695fb28957a83e005 (diff) | |
download | mkinitcpio-2ed876b6b5c7b431caf5c452d6ee4a67241c4d01.tar.gz mkinitcpio-2ed876b6b5c7b431caf5c452d6ee4a67241c4d01.tar.xz |
Added 'autodetect' hook, intended to replace *-auto scripts
Beginnings of raid and dm hooks
Used sysfs for ide parsing
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@25 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'hooks/ide')
-rw-r--r-- | hooks/ide | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -3,19 +3,7 @@ run_hook () { if [ -e /proc/ide ]; then msg -n "Loading ide modules..." - /bin/modprobe -q ide-generic >/dev/null 2>&1 - for d in /proc/ide/*; do - unit=${d#/proc/ide/} - if [ -e "${d}/media" -a ! -d "/sys/block/${unit}" ]; then - read m < "${d}/media" - case "${m}" in - disk) /bin/modprobe -q ide-disk >/dev/null 2>&1;; - cdrom) /bin/modprobe -q ide-cd >/dev/null 2>&1;; - tape) /bin/modprobe -q ide-tape >/dev/null 2>&1;; - floppy) /bin/modprobe -q ide-floppy >/dev/null 2>&1;; - esac - fi - done + /bin/modprobe -q -a $(/bin/cat /sys/bus/ide/devices/*/modalias) >/dev/null 2>&1 msg "done" else msg "No ide devices detected..." |