]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
verifiers: PowerPC fallout cleanup
authorDaniel Kiper <daniel.kiper@oracle.com>
Thu, 14 Mar 2019 18:45:17 +0000 (19:45 +0100)
committerDaniel Kiper <daniel.kiper@oracle.com>
Wed, 20 Mar 2019 10:38:28 +0000 (11:38 +0100)
PowerPC fallout cleanup after commit 4d4a8c96e (verifiers: Add possibility
to verify kernel and modules command lines) and ca0a4f689 (verifiers: File
type for fine-grained signature-verification controlling).

Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
Reviewed-by: Ross Philipson <ross.philipson@oracle.com>
grub-core/loader/powerpc/ieee1275/linux.c

index c114e7df4fb7200823271ebae6a9dcbecbbf3028..818b2a86d1ac14c611bb76ea04a4f08b0527e0e7 100644 (file)
@@ -270,7 +270,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
       goto out;
     }
 
-  elf = grub_elf_open (argv[0]);
+  elf = grub_elf_open (argv[0], GRUB_FILE_TYPE_LINUX_KERNEL);
   if (! elf)
     goto out;
 
@@ -303,7 +303,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
   /* Create kernel command line.  */
   grub_memcpy (linux_args, LINUX_IMAGE, sizeof (LINUX_IMAGE));
   if (grub_create_loader_cmdline (argc, argv, linux_args + sizeof (LINUX_IMAGE) - 1,
-                                 size))
+                                 size, GRUB_VERIFY_KERNEL_CMDLINE))
     goto out;
 
 out: