diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-04-27 02:27:09 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-04-27 02:27:09 +0200 |
commit | b3002a0c9ec4f3a299b5756695fb28957a83e005 (patch) | |
tree | 9659968bc0823914ecc1fb3009904436ab5a9fff /install/pci | |
parent | cf89f5cd1ce31c1073fb4ffff915f01bb10d5c6c (diff) | |
download | mkinitcpio-b3002a0c9ec4f3a299b5756695fb28957a83e005.tar.gz mkinitcpio-b3002a0c9ec4f3a299b5756695fb28957a83e005.tar.xz |
split base into base and pci hooks
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@23 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install/pci')
-rw-r--r-- | install/pci | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/install/pci b/install/pci new file mode 100644 index 0000000..4329720 --- /dev/null +++ b/install/pci @@ -0,0 +1,17 @@ +# vim: set ft=sh: + +install () +{ + MODULES="" + BINARIES="" + FILES="" + SCRIPT="pci" +} + +help () +{ +cat<<HELPEOF + This hook loads the necessary modules for the pci bus. + No modules are installed by this hook, it is script-only. +HELPEOF +} |