summaryrefslogtreecommitdiffstats
path: root/hooks
diff options
context:
space:
mode:
authorTobias Powalowski <tpowa@archlinux.org>2006-05-07 15:03:33 +0200
committerTobias Powalowski <tpowa@archlinux.org>2006-05-07 15:03:33 +0200
commitc65948fcdfca6da75f42615959660c2293c907c4 (patch)
treec6e94bf836d5f97b57d6bbe9d17a0b5ce74ede7c /hooks
parent3c2796fc34d6b5d41c9ff7b4389651bbbe6d018b (diff)
downloadmkinitcpio-c65948fcdfca6da75f42615959660c2293c907c4.tar.gz
mkinitcpio-c65948fcdfca6da75f42615959660c2293c907c4.tar.xz
'fixed mdadm check and modprobe hardcoded'
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@79 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'hooks')
-rw-r--r--hooks/autodetect9
1 files changed, 0 insertions, 9 deletions
diff --git a/hooks/autodetect b/hooks/autodetect
deleted file mode 100644
index bffdff3..0000000
--- a/hooks/autodetect
+++ /dev/null
@@ -1,9 +0,0 @@
-# vim: set ft=sh:
-run_hook ()
-{
- if [ -e /modules ]; then
- while read mod; do
- /bin/modprobe -q $mod >/dev/null 2>&1
- done < /modules
- fi
-}