Skip to content

Commit

Permalink
efi/libstub: Stop parsing arguments at "--"
Browse files Browse the repository at this point in the history
Arguments after "--" are arguments for init, not for the kernel.

Cc: <stable@vger.kernel.org>
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Link: https://lore.kernel.org/r/20200725155916.1376773-1-nivedita@alum.mit.edu
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
  • Loading branch information
Arvind Sankar authored and Ard Biesheuvel committed Aug 20, 2020
1 parent 98086df commit 1fd9717
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/firmware/efi/libstub/efi-stub-helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ efi_status_t efi_parse_options(char const *cmdline)
char *param, *val;

str = next_arg(str, &param, &val);
if (!val && !strcmp(param, "--"))
break;

if (!strcmp(param, "nokaslr")) {
efi_nokaslr = true;
Expand Down

0 comments on commit 1fd9717

Please sign in to comment.