]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
loader/efi/chainloader: Do not print device path of chainloaded file
authorMate Kukri <mate.kukri@canonical.com>
Thu, 15 Aug 2024 09:52:56 +0000 (10:52 +0100)
committerDaniel Kiper <daniel.kiper@oracle.com>
Thu, 5 Sep 2024 14:18:02 +0000 (16:18 +0200)
Users have no reason to see this and it can break graphical boot.

Signed-off-by: Mate Kukri <mate.kukri@canonical.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
grub-core/loader/efi/chainloader.c

index 1de98f78313651690a101e73a0d30cff1ee42201..869307bf3f02813e25824b364a1668770f93a7f7 100644 (file)
@@ -185,7 +185,6 @@ make_file_path (grub_efi_device_path_t *dp, const char *filename)
   /* Fill the file path for the directory.  */
   d = (grub_efi_device_path_t *) ((char *) file_path
                                  + ((char *) d - (char *) dp));
-  grub_efi_print_device_path (d);
   if (copy_file_path ((grub_efi_file_path_device_path_t *) d,
                      dir_start, dir_end - dir_start) != GRUB_ERR_NONE)
     {
@@ -272,9 +271,6 @@ grub_cmd_chainloader (grub_command_t cmd __attribute__ ((unused)),
       file_path = make_file_path (dp, filename);
       if (file_path == NULL)
        goto fail;
-
-      grub_printf ("file path: ");
-      grub_efi_print_device_path (file_path);
     }
 
   size = grub_file_size (file);