which we expect to be handled by upper layers.
+2010-07-06 Colin Watson <cjwatson@ubuntu.com>
+
+ * util/deviceiter.c (grub_util_iterate_devices): Skip MD devices,
+ which we expect to be handled by upper layers.
+
2010-07-06 BVK Chaitanya <bvk.groups@gmail.com>
* bus/usb/usbhub.c: #include time.h header.
later. */
if (strncmp (entry->d_name, "dm-", sizeof ("dm-") - 1) == 0)
continue;
+ /* Skip RAID entries; they are handled by upper layers. */
+ if (strncmp (entry->d_name, "md-", sizeof ("md-") - 1) == 0)
+ continue;
if (names_len >= names_max)
{
names_max *= 2;