Skip to content

Commit

Permalink
don't apend BOOT_IMAGE to kernel cmdline
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-dubrovskii committed May 5, 2021
1 parent 1bb9a9e commit 70dde0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zipl/boot/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ int menu(void)
(void *)&__stage2_params + TEXT_OFFSET));

/* append 'BOOT_IMAGE=<num>' to parmline */
snprintf(endstring, sizeof(endstring), " BOOT_IMAGE=%u", value);
//snprintf(endstring, sizeof(endstring), " BOOT_IMAGE=%u", value);
if ((strlen(cmd_line_extra) + strlen(endstring)) < COMMAND_LINE_SIZE)
strcat(cmd_line_extra, endstring);

Expand Down

0 comments on commit 70dde0e

Please sign in to comment.