From 8f0a5fda41fd4542c2d8adcf61bde452cc721a22 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 30 Dec 2024 01:29:35 +0100 Subject: startup: Do not emit ARGP_ERR_UNKNOWN This is making startup completely ignore parameters when root= is passed first on the kernel command line. --- startup/startup.c | 1 - 1 file changed, 1 deletion(-) diff --git a/startup/startup.c b/startup/startup.c index 606555d2..53d46982 100644 --- a/startup/startup.c +++ b/startup/startup.c @@ -728,7 +728,6 @@ parse_opt (int key, char *arg, struct argp_state *state) case OPT_KERNEL_TASK: kernel_task = atoi (arg); break; - default: return ARGP_ERR_UNKNOWN; } return 0; } -- cgit v1.2.3