* grub-core/loader/arm/linux.c: Change printf to dprintf.
This commit is contained in:
parent
459b1d9171
commit
3719fbc57f
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/loader/arm/linux.c: Change printf to dprintf.
|
||||
|
||||
2013-08-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/fs/zfs/zfs.c (check_feature): Cleanup and remove
|
||||
|
|
|
@ -77,13 +77,13 @@ linux_prepare_fdt (void)
|
|||
node = grub_fdt_find_subnode (tmp_fdt, 0, "chosen");
|
||||
if (node < 0)
|
||||
{
|
||||
grub_printf ("No 'chosen' node in FDT - creating.\n");
|
||||
grub_dprintf ("linux", "No 'chosen' node in FDT - creating.\n");
|
||||
node = grub_fdt_add_subnode (tmp_fdt, 0, "chosen");
|
||||
if (node < 0)
|
||||
goto failure;
|
||||
}
|
||||
|
||||
grub_printf ("linux_args: '%s'\n", linux_args);
|
||||
grub_dprintf ("linux", "linux_args: '%s'\n", linux_args);
|
||||
|
||||
/* Generate and set command line */
|
||||
retval = grub_fdt_set_prop (tmp_fdt, node, "bootargs", linux_args,
|
||||
|
|
Loading…
Reference in a new issue