* include/multiboot.h (MULTIBOOT_UNSUPPORTED): Moved from here ...
* loader/i386/multiboot.c (UNSUPPORTED_FLAGS): ... to here. Update
all users.
+2010-01-07 Robert Millan <rmh.grub@aybabtu.com>
+
+ * include/multiboot.h (MULTIBOOT_UNSUPPORTED): Moved from here ...
+ * loader/i386/multiboot.c (UNSUPPORTED_FLAGS): ... to here. Update
+ all users.
+
2010-01-07 Robert Millan <rmh.grub@aybabtu.com>
2010-01-07 Vladimir Serbinenko <phcoder@gmail.com>
/* This should be in %eax. */
#define MULTIBOOT_BOOTLOADER_MAGIC 0x2BADB002
-/* The bits in the required part of flags field we don't support. */
-#define MULTIBOOT_UNSUPPORTED 0x0000fffc
-
/* Alignment of multiboot modules. */
#define MULTIBOOT_MOD_ALIGN 0x00001000
* - APM table
*/
+/* The bits in the required part of flags field we don't support. */
+#define UNSUPPORTED_FLAGS 0x0000fffc
+
#include <grub/loader.h>
#include <grub/machine/loader.h>
#include <grub/multiboot.h>
goto fail;
}
- if (header->flags & MULTIBOOT_UNSUPPORTED)
+ if (header->flags & UNSUPPORTED_FLAGS)
{
grub_error (GRUB_ERR_UNKNOWN_OS,
"unsupported flag: 0x%x", header->flags);