* grub-core/normal/main.c (GRUB_MOD_INIT): Ignore errors when loading

gzio.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-06-15 23:42:34 +02:00
parent eac49cffc8
commit 377c98cba2
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/normal/main.c (GRUB_MOD_INIT): Ignore errors when loading
gzio.
2012-06-15 Vladimir Serbinenko <phcoder@gmail.com> 2012-06-15 Vladimir Serbinenko <phcoder@gmail.com>
Add loongson tests. Add loongson tests.

View file

@ -501,6 +501,7 @@ GRUB_MOD_INIT(normal)
/* Previously many modules depended on gzio. Be nice to user and load it. */ /* Previously many modules depended on gzio. Be nice to user and load it. */
grub_dl_load ("gzio"); grub_dl_load ("gzio");
grub_errno = 0;
grub_normal_auth_init (); grub_normal_auth_init ();
grub_context_init (); grub_context_init ();