verifiers: PowerPC fallout cleanup
PowerPC fallout cleanup after commit4d4a8c96e
(verifiers: Add possibility to verify kernel and modules command lines) andca0a4f689
(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>
This commit is contained in:
parent
1bc2b481c4
commit
ee025e512f
1 changed files with 2 additions and 2 deletions
|
@ -270,7 +270,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
elf = grub_elf_open (argv[0]);
|
elf = grub_elf_open (argv[0], GRUB_FILE_TYPE_LINUX_KERNEL);
|
||||||
if (! elf)
|
if (! elf)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
@ -303,7 +303,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
||||||
/* Create kernel command line. */
|
/* Create kernel command line. */
|
||||||
grub_memcpy (linux_args, LINUX_IMAGE, sizeof (LINUX_IMAGE));
|
grub_memcpy (linux_args, LINUX_IMAGE, sizeof (LINUX_IMAGE));
|
||||||
if (grub_create_loader_cmdline (argc, argv, linux_args + sizeof (LINUX_IMAGE) - 1,
|
if (grub_create_loader_cmdline (argc, argv, linux_args + sizeof (LINUX_IMAGE) - 1,
|
||||||
size))
|
size, GRUB_VERIFY_KERNEL_CMDLINE))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
|
|
Loading…
Reference in a new issue