blob: 6e8c45876e1d6c498abf24070b6fe4071198359e (
plain)
1
2
3
4
5
6
7
8
9
|
# 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"
|