summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2006-12-07 22:49:30 +0100
committerThomas Bächler <thomas@archlinux.org>2006-12-07 22:49:30 +0100
commit6b52dc9fba5ef4cdc6a049e7f35cf3d134da2827 (patch)
tree973372226bcd0e0f62946b10d5615c379f589bb4
parent02607774d17c89fbe9b77e8bbb379518c502a6cd (diff)
downloadmkinitcpio-6b52dc9fba5ef4cdc6a049e7f35cf3d134da2827.tar.gz
mkinitcpio-6b52dc9fba5ef4cdc6a049e7f35cf3d134da2827.tar.xz
- worked around "libata not added" bug. this needs to be looked at carefully
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@189 880c04e9-e011-0410-abf7-b926e227c9cd
-rw-r--r--functions2
-rw-r--r--install/pata2
-rw-r--r--install/sata2
3 files changed, 3 insertions, 3 deletions
diff --git a/functions b/functions
index 58ee03d..88e2ddd 100644
--- a/functions
+++ b/functions
@@ -145,7 +145,7 @@ add_module ()
add_file "${path}" && found=1
done
if [ $found -eq 0 ]; then
- die "module '$fil' not found, aborting..."
+ err "module '$fil' not found"
fi
}
diff --git a/install/pata b/install/pata
index c3da76f..88a0634 100644
--- a/install/pata
+++ b/install/pata
@@ -7,7 +7,7 @@ install ()
MODULES=$(echo ${MODULES}) #trim whitespace
if [ "x${MODULES}" != "x" ]; then
- MODULES="${MODULES} sd_mod sr_mod"
+ MODULES="${MODULES} libata sd_mod sr_mod"
fi
BINARIES=""
diff --git a/install/sata b/install/sata
index 61f7dda..f8c6bd8 100644
--- a/install/sata
+++ b/install/sata
@@ -9,7 +9,7 @@ install ()
MODULES=$(echo ${MODULES}) #trim whitespace
if [ "x${MODULES}" != "x" ]; then
- MODULES="${MODULES} sd_mod sr_mod"
+ MODULES="${MODULES} libata sd_mod sr_mod"
fi
BINARIES=""