Re: [PATCH 4/6] fix console setting from cmdline

2022-08-27 Thread Samuel Thibault
Luca Dariz, le sam. 05 févr. 2022 18:51:27 +0100, a ecrit: > The leading space prevents it working if console=comX is the only > argument, so handle this case separately. > > Signed-off-by: Luca Dariz Applied, thanks! > --- > i386/i386at/com.c | 5 + > 1 file changed, 5 insertions(+) > >

[PATCH 4/6] fix console setting from cmdline

2022-02-05 Thread Luca Dariz
The leading space prevents it working if console=comX is the only argument, so handle this case separately. Signed-off-by: Luca Dariz --- i386/i386at/com.c | 5 + 1 file changed, 5 insertions(+) diff --git a/i386/i386at/com.c b/i386/i386at/com.c index 3402a025..fb291b87 100644 --- a/i386/i3

Re: [PATCH 4/6] fix console setting from cmdline

2022-02-01 Thread Luca
Il 28/01/22 20:59, Samuel Thibault ha scritto: Luca Dariz, le ven. 28 janv. 2022 19:24:07 +0100, a ecrit: The leading space prevents it working if console=comX is the only argument. But it would be confused with another parameter which would be foobarconsole=bla You'd probably want to make th

Re: [PATCH 4/6] fix console setting from cmdline

2022-01-28 Thread Samuel Thibault
Luca Dariz, le ven. 28 janv. 2022 19:24:07 +0100, a ecrit: > The leading space prevents it working if console=comX is the only > argument. But it would be confused with another parameter which would be foobarconsole=bla You'd probably want to make the code also try strncmp(kernel_cmdline, CONSOLE

[PATCH 4/6] fix console setting from cmdline

2022-01-28 Thread Luca Dariz
The leading space prevents it working if console=comX is the only argument. Signed-off-by: Luca Dariz --- i386/i386at/com.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i386/i386at/com.c b/i386/i386at/com.c index 3402a025..d1de51c0 100644 --- a/i386/i386at/com.c +++ b/i386