* grub-core/commands/nativedisk.c: Ignore unknown filesystem error.
This commit is contained in:
parent
7cd0df84f1
commit
adb7d667fc
2 changed files with 6 additions and 0 deletions
|
@ -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>
|
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
New command `nativedisk'.
|
New command `nativedisk'.
|
||||||
|
|
|
@ -79,6 +79,8 @@ iterate_device (const char *name, void *data)
|
||||||
|
|
||||||
if (get_uuid (name, &cur_uuid))
|
if (get_uuid (name, &cur_uuid))
|
||||||
{
|
{
|
||||||
|
if (grub_errno == GRUB_ERR_UNKNOWN_FS)
|
||||||
|
grub_errno = 0;
|
||||||
grub_print_error ();
|
grub_print_error ();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue