+2007-12-30 Pavel Roskin <proski@gnu.org>
+
+ * loader/multiboot_loader.c: Fix multiboot command
+ unregistration. Fix all typos in the word "multiboot".
+
2007-12-19 Pavel Roskin <proski@gnu.org>
* util/grub.d/10_linux.in: Refactor search for initrd. Add
/* This tracks which version of multiboot to use when using
* the module command. By default use multiboot version 1.
* values:
- * 1 - Mulitboot version 1
- * 2 - Mutliboot version 2
+ * 1 - Multiboot version 1
+ * 2 - Multiboot version 2
*/
static unsigned int module_version_status = 1;
if (header_multi_ver_found == 0 || header_multi_ver_found == 2)
{
grub_dprintf ("multiboot_loader",
- "Launching mulitboot 2 grub_multiboot2() function\n");
+ "Launching multiboot 2 grub_multiboot2() function\n");
grub_multiboot2 (argc, argv);
module_version_status = 2;
}
GRUB_MOD_FINI(multiboot)
{
- grub_rescue_unregister_command ("mulitboot");
+ grub_rescue_unregister_command ("multiboot");
grub_rescue_unregister_command ("module");
}