diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-10-15 20:34:22 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-10-15 20:34:22 +0200 |
commit | 9760335102c3f14789864125aae1dc897285b4e2 (patch) | |
tree | 79dad60d02e177312089d73f7dfb7ed0ee08788c /install/ata | |
parent | bdb9d1b70cd5fcfa10dfe762795ac95ba71d6f10 (diff) | |
download | mkinitcpio-9760335102c3f14789864125aae1dc897285b4e2.tar.gz mkinitcpio-9760335102c3f14789864125aae1dc897285b4e2.tar.xz |
added install/ata and new deprecation check
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@173 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install/ata')
-rw-r--r-- | install/ata | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/install/ata b/install/ata new file mode 100644 index 0000000..a374aeb --- /dev/null +++ b/install/ata @@ -0,0 +1,25 @@ +# vim: set ft=sh: + +install () +{ + MODULES=" $(checked_modules "ata/*")" + + MODULES=$(echo ${MODULES}) #trim whitespace + if [ "x${MODULES}" != "x" ]; then + MODULES="${MODULES} sd_mod sr_mod" + fi + + BINARIES="" + FILES="" + SCRIPT="" +} + +help () +{ +cat<<HELPEOF + This hook loads the necessary modules for sata or pata root device + with the new ata subsystem on kernels >=2.6.19. + Detection will take place at runtime. To minimize the modules + in the image, add the autodetect hook too. +HELPEOF +} |