* grub-core/commands/nativedisk.c: Ignore unknown filesystem error.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-28 18:52:53 +02:00
parent 7cd0df84f1
commit adb7d667fc
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/nativedisk.c: Ignore unknown filesystem error.
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
New command `nativedisk'.

View file

@ -79,6 +79,8 @@ iterate_device (const char *name, void *data)
if (get_uuid (name, &cur_uuid))
{
if (grub_errno == GRUB_ERR_UNKNOWN_FS)
grub_errno = 0;
grub_print_error ();
return 0;
}