aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup-disk.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/setup-disk.in b/setup-disk.in
index a2b610f..6f49e6a 100644
--- a/setup-disk.in
+++ b/setup-disk.in
@@ -206,6 +206,14 @@ install_mounted_root() {
raid[456]) raidmod="$raidmod,raid456";;
esac
done
+
+ # check if we need hardware raid drivers
+ case $rootdev in
+ /dev/cciss/*)
+ initfs_features="$(echo $initfs_features | sed 's/raid//') raid"
+ ;;
+ esac
+
if [ -n "$VERBOSE" ]; then
echo "Root device: $rootdev"
echo "Root filesystem: $root_fs"