armsr: use console=tty1 to make console more readily available
authorMark Mentovai <mark@mentovai.com>
Fri, 28 Jun 2024 17:14:59 +0000 (13:14 -0400)
committerRobert Marko <robimarko@gmail.com>
Sun, 25 Aug 2024 11:15:33 +0000 (13:15 +0200)
commitc099523d66a34dede910729fbacbda5dd45640ca
tree82114973ef75b9300137984c361024e6cfb7f948
parent4f2dadcf95e1ba18bbb2d59f3c7e20e3d4da5208
armsr: use console=tty1 to make console more readily available

Like x86, armsr is frequently virtualized, and is used for development
and debugging. Kernel messages should be more readily apparent by
default. This can be achieved by adding console=tty1 to the kernel
command line, enabling the console on a (possibly virtual) display and
keyboard, in addition to a serial port.

This also enables failsafe on tty1. Failsafe mode operates on consoles
known by the kernel, without regard to /etc/inittab.

armsr's /etc/inittab is also updated to specify tty1 instead of tty0.
tty1 is technically more correct: tty1 is the first virtual console,
where tty0 reflects the current active virtual console (which is likely
to be tty1).

This configuration matches x86, which is another target commonly used
for virtualization, development, and debugging in the same way. x86's
kernel command line had specified console=tty0, although console=tty1 is
more correct for the reasons given above. This also brings x86's kernel
command line console= into agreement with its /etc/inittab, which
already used tty1.

Signed-off-by: Mark Mentovai <mark@mentovai.com>
Link: https://github.com/openwrt/openwrt/pull/16213
Signed-off-by: Robert Marko <robimarko@gmail.com>
target/linux/armsr/base-files/etc/inittab
target/linux/armsr/image/Makefile
target/linux/x86/image/Makefile