mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-12 20:16:49 +02:00
installer: Improve check for serial console option
This commit is contained in:
@@ -289,7 +289,7 @@ static void parse_command_line(struct config* c) {
|
||||
char* key = strsep(&val, "=");
|
||||
|
||||
// serial console
|
||||
if (strcmp(token, "console=ttyS0") == 0)
|
||||
if ((strcmp(key, "console") == 0) && (strncmp(val, "ttyS", 4) == 0))
|
||||
c->serial_console = 1;
|
||||
|
||||
// enable networking?
|
||||
|
||||
Reference in New Issue
Block a user