* grub-core/efiemu/main.c (grub_efiemu_prepare): Handle errors from
grub_efiemu_autocore.
This commit is contained in:
parent
d87c681fd4
commit
d0f4c1ea0f
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-10-14 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/efiemu/main.c (grub_efiemu_prepare): Handle errors from
|
||||||
|
grub_efiemu_autocore.
|
||||||
|
|
||||||
2010-10-14 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-10-14 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/i386/pc/startup.S (bypass_table): Use 0x1b explicitly
|
* grub-core/kern/i386/pc/startup.S (bypass_table): Use 0x1b explicitly
|
||||||
|
|
|
@ -266,11 +266,13 @@ grub_efiemu_prepare (void)
|
||||||
if (prepared)
|
if (prepared)
|
||||||
return GRUB_ERR_NONE;
|
return GRUB_ERR_NONE;
|
||||||
|
|
||||||
|
err = grub_efiemu_autocore ();
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
grub_dprintf ("efiemu", "Preparing %d-bit efiemu\n",
|
grub_dprintf ("efiemu", "Preparing %d-bit efiemu\n",
|
||||||
8 * grub_efiemu_sizeof_uintn_t ());
|
8 * grub_efiemu_sizeof_uintn_t ());
|
||||||
|
|
||||||
err = grub_efiemu_autocore ();
|
|
||||||
|
|
||||||
/* Create NVRAM. */
|
/* Create NVRAM. */
|
||||||
grub_efiemu_pnvram ();
|
grub_efiemu_pnvram ();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue