* [gentoo-user] Serial console stops working as soon as openrc starts
@ 2023-09-09 19:09 Grant Edwards
2023-09-09 19:39 ` [gentoo-user] " Grant Edwards
0 siblings, 1 reply; 5+ messages in thread
From: Grant Edwards @ 2023-09-09 19:09 UTC (permalink / raw
To: gentoo-user
I've set up a serial console by adding the following to my kernel
command line:
console=ttyS0,115200 console=tty1
It works fine for the first few seconds as the kernel starts up. All
of the expected messages are sent out ttyS0.
But, soon after init starts, the serial console stops working.
The end of the serial console log always looks like this
[ 3.502684] Freeing unused kernel image (initmem) memory: 1516K
[ 3.509155] Write protecting the kernel read-only data: 24576k
[ 3.515861] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 3.523160] Freeing unused kernel image (rodata/data gap) memory: 1156K
[ 3.568699] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 3.575655] x86/mm: Checking user space page tables
[ 3.615655] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 3.622604] Run /sbin/init as init process
[ 3.660655] kbd_mode (115) used greatest stack depth: 13096 bytes left
[ 3.667760] loadkeys (116) used greatest stack depth: 13048 bytes left
On the tty1 console, the next thing after the "loadkeys" line above is
the OpenRC banner, so apparently openrc is messing with my console
settings. It's been a few years since I setup a serial console, but
after adding the "console=" argument to the kernel args it used to
"just work".
How do I get openrc to leave the serial console alone?
--
Grant
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: Serial console stops working as soon as openrc starts
2023-09-09 19:09 [gentoo-user] Serial console stops working as soon as openrc starts Grant Edwards
@ 2023-09-09 19:39 ` Grant Edwards
2023-09-09 20:48 ` Dale
0 siblings, 1 reply; 5+ messages in thread
From: Grant Edwards @ 2023-09-09 19:39 UTC (permalink / raw
To: gentoo-user
On 2023-09-09, Grant Edwards <grant.b.edwards@gmail.com> wrote:
> I've set up a serial console by adding the following to my kernel
> command line:
>
> console=ttyS0,115200 console=tty1
>
> It works fine for the first few seconds as the kernel starts up. All
> of the expected messages are sent out ttyS0.
>
> But, soon after init starts, the serial console stops working.
That's because one of the first things openrc runs in
/etc/init.d/dmesg, and it changes the kernel logging level to the
value defined in /etc/conf.d/dmesg (which defaults to 1).
Changing the level in /etc/conf.d/dmesg from 1 to 8 allowed the serial
console to continue working as I wanted it to.
[I spent an entire day trying to get serial logging to work on Ubuntu
with systemd, and got exactly nowhere. After replacing Ubuntu/systemd
with Gentoo/openrc it didn't take long to track down the answer in the
openrc docs.]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Re: Serial console stops working as soon as openrc starts
2023-09-09 19:39 ` [gentoo-user] " Grant Edwards
@ 2023-09-09 20:48 ` Dale
2023-09-09 21:08 ` Grant Edwards
0 siblings, 1 reply; 5+ messages in thread
From: Dale @ 2023-09-09 20:48 UTC (permalink / raw
To: gentoo-user
Grant Edwards wrote:
> On 2023-09-09, Grant Edwards <grant.b.edwards@gmail.com> wrote:
>> I've set up a serial console by adding the following to my kernel
>> command line:
>>
>> console=ttyS0,115200 console=tty1
>>
>> It works fine for the first few seconds as the kernel starts up. All
>> of the expected messages are sent out ttyS0.
>>
>> But, soon after init starts, the serial console stops working.
> That's because one of the first things openrc runs in
> /etc/init.d/dmesg, and it changes the kernel logging level to the
> value defined in /etc/conf.d/dmesg (which defaults to 1).
>
> Changing the level in /etc/conf.d/dmesg from 1 to 8 allowed the serial
> console to continue working as I wanted it to.
>
> [I spent an entire day trying to get serial logging to work on Ubuntu
> with systemd, and got exactly nowhere. After replacing Ubuntu/systemd
> with Gentoo/openrc it didn't take long to track down the answer in the
> openrc docs.]
>
>
Does it say what else changing the log level does? If so, can you link
to the docs you found? I'm curious.
Thanks.
Dale
:-) :-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: Serial console stops working as soon as openrc starts
2023-09-09 20:48 ` Dale
@ 2023-09-09 21:08 ` Grant Edwards
2023-09-09 21:50 ` Dale
0 siblings, 1 reply; 5+ messages in thread
From: Grant Edwards @ 2023-09-09 21:08 UTC (permalink / raw
To: gentoo-user
On 2023-09-09, Dale <rdalek1967@gmail.com> wrote:
>> Changing the level in /etc/conf.d/dmesg from 1 to 8 allowed the serial
>> console to continue working as I wanted it to.
>
> Does it say what else changing the log level does?
It's a single, global value in the kernel so it has the same affect on
all linux kernel consoles.
> If so, can you link to the docs you found? I'm curious.
https://github.com/OpenRC/openrc/blob/master/conf.d/dmesg
https://man7.org/linux/man-pages/man1/dmesg.1.html
https://www.kernel.org/doc/html/next/core-api/printk-basics.html
https://linuxconfig.org/introduction-to-the-linux-kernel-log-levels
https://www.oreilly.com/library/view/linux-kernel-in/0596100795/re06.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Re: Serial console stops working as soon as openrc starts
2023-09-09 21:08 ` Grant Edwards
@ 2023-09-09 21:50 ` Dale
0 siblings, 0 replies; 5+ messages in thread
From: Dale @ 2023-09-09 21:50 UTC (permalink / raw
To: gentoo-user
Grant Edwards wrote:
> On 2023-09-09, Dale <rdalek1967@gmail.com> wrote:
>
>>> Changing the level in /etc/conf.d/dmesg from 1 to 8 allowed the serial
>>> console to continue working as I wanted it to.
>> Does it say what else changing the log level does?
> It's a single, global value in the kernel so it has the same affect on
> all linux kernel consoles.
>
>> If so, can you link to the docs you found? I'm curious.
> https://github.com/OpenRC/openrc/blob/master/conf.d/dmesg
>
> https://man7.org/linux/man-pages/man1/dmesg.1.html
>
> https://www.kernel.org/doc/html/next/core-api/printk-basics.html
>
> https://linuxconfig.org/introduction-to-the-linux-kernel-log-levels
>
> https://www.oreilly.com/library/view/linux-kernel-in/0596100795/re06.html
The next to last one gave me what I was curious about most. Others are
interesting to tho.
Learn something every day. Remembering it is another thing tho. :/
Thanks.
Dale
:-) :-)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-09 21:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-09 19:09 [gentoo-user] Serial console stops working as soon as openrc starts Grant Edwards
2023-09-09 19:39 ` [gentoo-user] " Grant Edwards
2023-09-09 20:48 ` Dale
2023-09-09 21:08 ` Grant Edwards
2023-09-09 21:50 ` Dale
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox