aboutsummaryrefslogtreecommitdiffstats
path: root/udev/rules.d/10-console.rules
blob: f190b3b744f64e77c96d21a171b3ade02218d64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# do not edit this file, it will be overwritten on update

ACTION!="add", GOTO="console_end"

# Console initialization - keyboard, font, etc.
# Systemd does console init itself
KERNEL=="tty0", TEST{040000}!="/sys/fs/cgroup/systemd",	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"