]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2006-10-14 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Sat, 14 Oct 2006 21:51:37 +0000 (21:51 +0000)
committerrobertmh <robertmh@localhost>
Sat, 14 Oct 2006 21:51:37 +0000 (21:51 +0000)
* util/i386/pc/getroot.c (grub_guess_root_device): Don't compare os_dev
with "/dev/.static/dev/md".

ChangeLog
util/i386/pc/getroot.c

index d63f1696bafea6e7e078bc3c923a295564234e8e..2c06ffeb72d9d5266447212313b7bc1a7a79c69a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-14  Robert Millan  <rmh@aybabtu.com>
+
+       * util/i386/pc/getroot.c (grub_guess_root_device): Don't compare os_dev
+       with "/dev/.static/dev/md".
+
 2006-10-14  Yoshinori K. Okuji  <okuji@enbug.org>
 
        * util/i386/pc/grub-probe.c (probe): Print DEVICE_NAME instead of
index e294500a7d518a3bf87b61c69793883bdebbee3d..343f9655a88585273a4bfb521c3ebc6c288793bd 100644 (file)
@@ -234,7 +234,7 @@ grub_guess_root_device (const char *dir)
       return grub_dev;
     }
 
-  if (!strncmp (os_dev, "/dev/md", 7) || !strncmp (os_dev, "/dev/.static/dev/md", 19))
+  if (!strncmp (os_dev, "/dev/md", 7))
     {
       char *p, *grub_dev = xmalloc (8);