summaryrefslogtreecommitdiffstats
path: root/hooks/ide
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-05-03 04:02:53 +0200
committerAaron Griffin <aaron@archlinux.org>2006-05-03 04:02:53 +0200
commitad1050964eabbbc00547e8c6c91d8a7c3f13598f (patch)
tree79962456d502bbbb8a072568f31bd18e99b85099 /hooks/ide
parent66f28ea341f293cbddd30242f9ea03673d4674d2 (diff)
downloadmkinitcpio-ad1050964eabbbc00547e8c6c91d8a7c3f13598f.tar.gz
mkinitcpio-ad1050964eabbbc00547e8c6c91d8a7c3f13598f.tar.xz
Merged autodetect changes from tpowa.
Removed older subsystem specific scripts, replaced then with 'modload' just to keep the option in place. git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@43 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'hooks/ide')
-rw-r--r--hooks/ide11
1 files changed, 0 insertions, 11 deletions
diff --git a/hooks/ide b/hooks/ide
deleted file mode 100644
index a6ca17c..0000000
--- a/hooks/ide
+++ /dev/null
@@ -1,11 +0,0 @@
-# vim: set ft=sh:
-run_hook ()
-{
- if [ -e /proc/ide ]; then
- msg -n "Loading ide modules..."
- /bin/modprobe -q -a $(/bin/cat /sys/bus/ide/devices/*/modalias) >/dev/null 2>&1
- msg "done"
- else
- msg "No ide devices detected..."
- fi
-}