1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

We want /dev/md0 for ramdisk roots, not /dev/md0c.

Sponsored by:	DARPA & NAI Labs
This commit is contained in:
Poul-Henning Kamp 2002-10-21 20:08:28 +00:00
parent 53894badfd
commit 8689acc48c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105647

View File

@ -1146,7 +1146,7 @@ static void
md_takeroot(void *junk)
{
if (mdrootready)
rootdevnames[0] = "ufs:/dev/md0c";
rootdevnames[0] = "ufs:/dev/md0";
}
SYSINIT(md_root, SI_SUB_MOUNT_ROOT, SI_ORDER_FIRST, md_takeroot, NULL);