blob: e7609c57988cc1c5c8234f7179ae3683fe06e150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# do not edit this file, it will be overwritten on update
ACTION!="add", GOTO="console_end"
# Console initialization - keyboard, font, etc.
KERNEL=="tty0", RUN+="/lib/udev/console_init %k"
# Check and set up serial and serial-like consoles if necessary
KERNEL=="console", RUN+="/lib/udev/console_check %k"
KERNEL=="ttySG*", RUN+="/lib/udev/console_check %k"
KERNEL=="xvc*", RUN+="/lib/udev/console_check %k"
KERNEL=="hvsi*", RUN+="/lib/udev/console_check %k"
KERNEL=="hvc*", RUN+="/lib/udev/console_check %k"
LABEL="console_end"
|