summaryrefslogtreecommitdiffstats
path: root/install/modload
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 /install/modload
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 'install/modload')
-rw-r--r--install/modload18
1 files changed, 18 insertions, 0 deletions
diff --git a/install/modload b/install/modload
new file mode 100644
index 0000000..fd46a22
--- /dev/null
+++ b/install/modload
@@ -0,0 +1,18 @@
+# vim: set ft=sh:
+
+install ()
+{
+ MODULES=""
+ BINARIES=""
+ FILES=""
+ SCRIPT="modload"
+}
+
+help ()
+{
+cat<<HELPEOF
+ This hook manually detects and loads modules. It is much
+ slower than udev and the udev hook should be preferred.
+ This remains meerly as another option for a user.
+HELPEOF
+}