]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/kern/emu/main.c (main): Call hostfs_init only after init_all.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 12 Sep 2010 11:55:52 +0000 (13:55 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 12 Sep 2010 11:55:52 +0000 (13:55 +0200)
ChangeLog
grub-core/kern/emu/main.c

index 79fd795563ca29b1acbda748ba9e5ad974071cfb..436c0980b396bf55a9c7dfda01700ef9c259c140 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/kern/emu/main.c (main): Call hostfs_init only after init_all.
+
 2010-09-12  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * grub-core/commands/menuentry.c (append_menu_entry): Don't rely on
index 23b8516f1aa39ee837893688d10769f6f3386495..c575beb4bc0eac3fc833cb307573021c6e04fcee 100644 (file)
@@ -190,13 +190,14 @@ main (int argc, char *argv[])
   grub_emu_init ();
   grub_console_init ();
   grub_host_init ();
-  grub_hostfs_init ();
 
   /* XXX: This is a bit unportable.  */
   grub_util_biosdisk_init (dev_map);
 
   grub_init_all ();
 
+  grub_hostfs_init ();
+
   grub_emu_post_init ();
 
   /* Make sure that there is a root device.  */