]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-06-11 Pavel Roskin <proski@gnu.org>
authorproski <proski@localhost>
Thu, 11 Jun 2009 16:41:24 +0000 (16:41 +0000)
committerproski <proski@localhost>
Thu, 11 Jun 2009 16:41:24 +0000 (16:41 +0000)
* loader/ieee1275/multiboot2.c [__i386__]: Include
grub/cpu/multiboot.h.

ChangeLog
loader/ieee1275/multiboot2.c

index 2053f2d598b0558fa31556406fb233486ce0ba51..78378f5974052cd2b1f75b814ab6a2eca158d613 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2009-06-11  Pavel Roskin  <proski@gnu.org>
 
+       * loader/ieee1275/multiboot2.c [__i386__]: Include
+       grub/cpu/multiboot.h.
+
        * term/i386/pc/serial.c (serial_translate_key_sequence): Avoid
        casts to short - they are not portable and cause warnings.  Fix
        use of uninitialized values in input_buf.  Use ARRAY_SIZE.
index 61f21b0e5927cd1ee4b28229ad3338d6ccc1dc68..d1444ceff1e0a19d64a6170df28b98fc0c8a9b62 100644 (file)
@@ -27,6 +27,9 @@
 #include <grub/mm.h>
 #include <grub/machine/kernel.h>
 #include <grub/machine/loader.h>
+#ifdef __i386__
+#include <grub/cpu/multiboot.h>
+#endif
 
 typedef void (*kernel_entry_t) (unsigned long, void *, int (void *),
                                 unsigned long, unsigned long);