* loader/multiboot.c (GRUB_MOD_INIT) [GRUB_USE_MULTIBOOT2]:
Rename "module" to "module2". Reported by: Seth Goldberg.
This commit is contained in:
parent
f2fd9d2b2b
commit
daea6abdeb
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* loader/multiboot.c (GRUB_MOD_INIT) [GRUB_USE_MULTIBOOT2]:
|
||||
Rename "module" to "module2".
|
||||
Reported by: Seth Goldberg.
|
||||
|
||||
2010-04-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* include/grub/efi/memory.h (grub_machine_mmap_iterate): Remove
|
||||
|
|
|
@ -335,14 +335,16 @@ GRUB_MOD_INIT(multiboot)
|
|||
#ifdef GRUB_USE_MULTIBOOT2
|
||||
grub_register_command ("multiboot2", grub_cmd_multiboot,
|
||||
0, N_("Load a multiboot 2 kernel."));
|
||||
cmd_module =
|
||||
grub_register_command ("module2", grub_cmd_module,
|
||||
0, N_("Load a multiboot 2 module."));
|
||||
#else
|
||||
grub_register_command ("multiboot", grub_cmd_multiboot,
|
||||
0, N_("Load a multiboot kernel."));
|
||||
#endif
|
||||
|
||||
cmd_module =
|
||||
grub_register_command ("module", grub_cmd_module,
|
||||
0, N_("Load a multiboot module."));
|
||||
#endif
|
||||
|
||||
my_mod = mod;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue