* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi]
[GRUB_MACHINE_EFI && __i386__]: Fix typo.
This commit is contained in:
parent
579940128b
commit
aa438e6818
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi]
|
||||||
|
[GRUB_MACHINE_EFI && __i386__]: Fix typo.
|
||||||
|
|
||||||
2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-09-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Fix coreboot compilation.
|
Fix coreboot compilation.
|
||||||
|
|
|
@ -717,7 +717,7 @@ grub_multiboot_make_mbi (grub_uint32_t *target)
|
||||||
|
|
||||||
#if defined (GRUB_MACHINE_EFI) && defined (__i386__)
|
#if defined (GRUB_MACHINE_EFI) && defined (__i386__)
|
||||||
{
|
{
|
||||||
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi32 *) ptrorig;
|
struct multiboot_tag_efi32 *tag = (struct multiboot_tag_efi32 *) ptrorig;
|
||||||
tag->type = MULTIBOOT_TAG_TYPE_EFI32;
|
tag->type = MULTIBOOT_TAG_TYPE_EFI32;
|
||||||
tag->size = sizeof (*tag);
|
tag->size = sizeof (*tag);
|
||||||
tag->pointer = (grub_addr_t) grub_efi_system_table;
|
tag->pointer = (grub_addr_t) grub_efi_system_table;
|
||||||
|
|
Loading…
Reference in a new issue