+2010-06-23 Colin Watson <cjwatson@ubuntu.com>
+
+ Sync up other versions of the Linux loader with Robert Millan's
+ change of 2010-01-09, "Make loader output a bit more user-friendly".
+
+ * loader/i386/efi/linux.c (grub_linux_boot): Move debug info to
+ grub_dprintf().
+ (grub_cmd_linux): Likewise.
+ (grub_cmd_initrd): Likewise.
+ * loader/i386/ieee1275/linux.c (grub_cmd_linux): Likewise.
+ * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
+
2010-06-21 Colin Watson <cjwatson@ubuntu.com>
* kern/efi/mm.c (grub_efi_mm_init): Handle systems with memory maps
grub_mmap_iterate (hook);
params->mmap_size = e820_num;
- grub_printf ("Trampoline at %p. code32=%x, real_mode_mem=%p\n",
- ((char *) prot_mode_mem + (prot_mode_pages << 12)),
- (unsigned) params->code32_start, real_mode_mem);
+ grub_dprintf ("linux", "Trampoline at %p. code32=%x, real_mode_mem=%p\n",
+ ((char *) prot_mode_mem + (prot_mode_pages << 12)),
+ (unsigned) params->code32_start, real_mode_mem);
modevar = grub_env_get ("gfxpayload");
grub_file_seek (file, real_size + GRUB_DISK_SECTOR_SIZE);
/* XXX there is no way to know if the kernel really supports EFI. */
- grub_printf (" [Linux-bzImage, setup=0x%x, size=0x%x]\n",
- (unsigned) real_size, (unsigned) prot_size);
+ grub_dprintf ("linux", "bzImage, setup=0x%x, size=0x%x\n",
+ (unsigned) real_size, (unsigned) prot_size);
/* Detect explicitly specified memory size, if any. */
linux_mem_size = 0;
goto fail;
}
- grub_printf (" [Initrd, addr=0x%x, size=0x%x]\n",
- (unsigned) addr, (unsigned) size);
+ grub_dprintf ("linux", "Initrd, addr=0x%x, size=0x%x\n",
+ (unsigned) addr, (unsigned) size);
lh->ramdisk_image = addr;
lh->ramdisk_size = size;
real_size = setup_sects << GRUB_DISK_SECTOR_BITS;
prot_size = grub_file_size (file) - real_size - GRUB_DISK_SECTOR_SIZE;
- grub_printf (" [Linux-%s, setup=0x%x, size=0x%x]\n",
- "bzImage", real_size, prot_size);
+ grub_dprintf ("linux", "Linux-%s, setup=0x%x, size=0x%x\n",
+ "bzImage", real_size, prot_size);
grub_file_seek (file, real_size + GRUB_DISK_SECTOR_SIZE);
if (grub_errno)
goto fail;
}
- grub_printf (" [Linux-%s, setup=0x%x, size=0x%x]\n",
- grub_linux_is_bzimage ? "bzImage" : "zImage", real_size, prot_size);
+ grub_dprintf ("linux", "Linux-%s, setup=0x%x, size=0x%x\n",
+ grub_linux_is_bzimage ? "bzImage" : "zImage",
+ real_size, prot_size);
for (i = 1; i < argc; i++)
if (grub_memcmp (argv[i], "vga=", 4) == 0)