* grub-core/kern/fs.c (grub_fs_probe): Handle GRUB_ERR_OUT_OF_RANGE as
a bad FS.
This commit is contained in:
parent
def3df7520
commit
bfb320c644
2 changed files with 7 additions and 1 deletions
|
@ -77,7 +77,8 @@ grub_fs_probe (grub_device_t device)
|
|||
grub_dprintf ("fs", "%s detection failed.\n", p->name);
|
||||
grub_error_pop ();
|
||||
|
||||
if (grub_errno != GRUB_ERR_BAD_FS)
|
||||
if (grub_errno != GRUB_ERR_BAD_FS
|
||||
&& grub_errno != GRUB_ERR_OUT_OF_RANGE)
|
||||
return 0;
|
||||
|
||||
grub_errno = GRUB_ERR_NONE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue