diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-05-04 09:29:25 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-05-04 09:29:25 +0200 |
commit | 35308163932b39fbeb147b09b5e807009392c46a (patch) | |
tree | 213ec1b8be0cd25e7da14880b4f3ea6584cb4fdf /install/sata | |
parent | f5b35a26476faadaf518d4fbeef8187436e18980 (diff) | |
download | mkinitcpio-35308163932b39fbeb147b09b5e807009392c46a.tar.gz mkinitcpio-35308163932b39fbeb147b09b5e807009392c46a.tar.xz |
Changes to autodetection:
General performance improvement
Cleaned up excess modules
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@56 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install/sata')
-rw-r--r-- | install/sata | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/install/sata b/install/sata index 134ecdb..73c2729 100644 --- a/install/sata +++ b/install/sata @@ -2,7 +2,13 @@ install () { - MODULES=" $(checked_modules "scsi/.*ata" && echo "sx8 ahci pdc_adma sd_mod sr_mod")" + MODULES=" $(checked_modules "scsi/.*ata") " + + MODULES=$(echo ${MODULES}) #trim whitespace + if [ "x${MODULES}" != "x" ]; then + MODULES="${MODULES} sx8 ahci pdc_adma sd_mod sr_mod" + fi + BINARIES="" FILES="" SCRIPT="" |