• Home
  • Raw
  • Download

Lines Matching +full:on +full:- +full:device

7 kernel - by default it is not compiled in. For PC style serial ports
10 :menuselection:`Character devices --> Serial drivers --> 8250/16550 and compatible serial support -…
15 define a new kernel command line option to select which device(s) to
20 console=device,options
22 device: tty0 for the foreground virtual console
26 ttyUSB0 for the first USB serial device
28 options: depend on the driver. For the serial port this
35 You can specify multiple console= options on the kernel command line.
37 The behavior is well defined when each device type is mentioned only once.
38 In this case, the output will appear on all requested consoles. And
39 the last device will be used when you open ``/dev/console``.
45 virtual console, and kernel messages will appear on both the VGA
48 The behavior is more complicated when the same device type is defined more
51 1. The output will appear only on the first device of each defined type.
53 2. ``/dev/console`` will be associated with the first registered device.
54 Where the registration order depends on how kernel initializes various
67 The kernel messages are printed only on ``tty0`` and ``ttyS1``. And
70 because of the default behavior when no console device is specified,
77 If no console device is specified, the first device found capable of
83 You will need to create a new device to use ``/dev/console``. The official
84 ``/dev/console`` is now character device 5,1.
86 (You can also use a network device as a console. See
87 ``Documentation/networking/netconsole.rst`` for information on that.)
96 rm -f console tty0
97 mknod -m 622 console c 5 1
98 mknod -m 622 tty0 c 4 0
100 2. LILO can also take input from a serial device. This is a very
111 4. Make sure a getty runs on the serial port so that you can login to
113 like this to ``/etc/inittab`` (exact syntax depends on your getty)::
115 S1:23:respawn:/sbin/getty -L ttyS1 9600 vt100
126 open ``/dev/console``. If you have created the new ``/dev/console`` device,
141 Thanks to Geert Uytterhoeven <geert@linux-m68k.org>
145 Miquel van Smoorenburg <miquels@cistron.nl>, 11-Jun-2000