* util/grub-probe.c (probe): Separate different drives in hint-str

by spaces and not newlines.
	* util/grub-mkconfig_lib.in: Handle multidevice filesystem.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-10-14 18:27:29 +02:00
parent 44016e527a
commit 588744d0dc
3 changed files with 33 additions and 11 deletions

View file

@ -555,7 +555,10 @@ probe (const char *path, char **device_names, char delim)
print_full_name (map, dev);
printf ("' ");
}
printf ("\n");
if (curdrive[1])
printf (" ");
else
printf ("\n");
grub_device_close (dev);
continue;