aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hjalmarsson <xake@rymdraket.net>2011-02-23 07:14:04 +0100
committerSebastian Pipping <sebastian@pipping.org>2011-02-24 10:27:12 +0100
commit665c3ecff6cb6584ef1c0a3eb867acc5ea3944e3 (patch)
treecec7d41c22a3cd2bca38814fbb08be70e68271b5
parentIntroducing MDADM_CONFIG (diff)
downloadgenkernel-665c3ecff6cb6584ef1c0a3eb867acc5ea3944e3.tar.gz
genkernel-665c3ecff6cb6584ef1c0a3eb867acc5ea3944e3.tar.bz2
genkernel-665c3ecff6cb6584ef1c0a3eb867acc5ea3944e3.zip
Do not mess with MDADMs auto-detect
Only reason for this logic is to limit what entries in /proc/partitions mdadm scans for arrays. However this seems to break raids in containers (example Intel fakeraids) as those containers are never scanned for arrays. (On my system it activates /dev/md/imsm0, but never /dev/md/Gentoo_0 which is the real RAID with the removed logic) If someone has something dead-slow they do not want scanned for raids, it is better if they specify their own mdadm.conf. If someone finds an example of something that mdadm scans for arrays that is not supposed to be scanned, we may handle that then.
-rwxr-xr-xdefaults/initrd.scripts5
1 files changed, 0 insertions, 5 deletions
diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index f7f01ded..dd444296 100755
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -621,11 +621,6 @@ startVolumes() {
if [ "${USE_MDADM}" = '1' ]
then
- if [ ! -e '/etc/mdadm.conf' ]
- then
- echo "DEVICE /dev/sd[a-z]* /dev/hd[a-z]*" >/etc/mdadm.conf
- /sbin/mdadm --examine --scan >>/etc/mdadm.conf
- fi
/sbin/mdadm --assemble --scan
fi