* grub-core/loader/efi/appleloader.c (grub_cmd_appleloader): Move
diagnostic to dprintf. * grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
This commit is contained in:
parent
e4b7f404d8
commit
db5fc59616
3 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/loader/efi/appleloader.c (grub_cmd_appleloader): Move
|
||||
diagnostic to dprintf.
|
||||
* grub-core/loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
|
||||
|
||||
2012-02-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/kern/corecmd.c (grub_core_cmd_ls): Handle error in parsing
|
||||
|
|
|
@ -167,7 +167,7 @@ grub_cmd_appleloader (grub_command_t cmd __attribute__ ((unused)),
|
|||
goto fail;
|
||||
}
|
||||
|
||||
grub_printf ("Model : %s\n", pdev->model);
|
||||
grub_dprintf ("appleload", "Model: %s\n", pdev->model);
|
||||
|
||||
loaded_image = grub_efi_get_loaded_image (image_handle);
|
||||
if (! loaded_image)
|
||||
|
|
|
@ -204,9 +204,9 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|||
goto fail;
|
||||
}
|
||||
|
||||
grub_printf (" [Linux-%s, setup=0x%x, size=0x%x]\n",
|
||||
grub_linux_is_bzimage ? "bzImage" : "zImage", real_size,
|
||||
grub_linux16_prot_size);
|
||||
grub_dprintf ("linux", "[Linux-%s, setup=0x%x, size=0x%x]\n",
|
||||
grub_linux_is_bzimage ? "bzImage" : "zImage", real_size,
|
||||
grub_linux16_prot_size);
|
||||
|
||||
relocator = grub_relocator_new ();
|
||||
if (!relocator)
|
||||
|
|
Loading…
Reference in a new issue