mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
util: switch the console to text mode on reset
In case we're taking over the console after a killed X server. https://bugzilla.redhat.com/show_bug.cgi?id=771563
This commit is contained in:
parent
df465b3f44
commit
5c0100a537
@ -2465,6 +2465,9 @@ int reset_terminal_fd(int fd) {
|
||||
/* Disable exclusive mode, just in case */
|
||||
ioctl(fd, TIOCNXCL);
|
||||
|
||||
/* Switch to text mode */
|
||||
ioctl(fd, KDSETMODE, KD_TEXT);
|
||||
|
||||
/* Enable console unicode mode */
|
||||
ioctl(fd, KDSKBMODE, K_UNICODE);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user