From addedec48ba0ffc4472ef6d3b5a45c9d4239f1cd Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 3 Jan 2012 21:47:54 +0100 Subject: logind: if we can't open /dev/tty0, assume there is no VT subsystem and don't pretend we could do VT switching --- src/login/logind.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/login/logind.c') diff --git a/src/login/logind.c b/src/login/logind.c index 4633a5ef29..3a1903ca13 100644 --- a/src/login/logind.c +++ b/src/login/logind.c @@ -655,7 +655,6 @@ int manager_dispatch_seat_udev(Manager *m) { return r; } - int manager_dispatch_vcsa_udev(Manager *m) { struct udev_device *d; int r = 0; @@ -906,6 +905,12 @@ static int manager_connect_console(Manager *m) { m->console_active_fd = open("/sys/class/tty/tty0/active", O_RDONLY|O_NOCTTY|O_CLOEXEC); if (m->console_active_fd < 0) { + + /* On certain architectures (S390 and Xen), /dev/tty0 + does not exist, so don't fail if we can't open it.*/ + if (errno == ENOENT) + return 0; + log_error("Failed to open /sys/class/tty/tty0/active: %m"); return -errno; } -- cgit v1.2.3-54-g00ecf