From: Lennart Poettering Date: Mon, 1 Aug 2011 18:27:57 +0000 (+0200) Subject: getty: automatically spawn getty on xen console xvc0 X-Git-Tag: v33~22 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=980fc73d1fcda8c2a494a18dbd3262fdb97f5fbe;p=elogind.git getty: automatically spawn getty on xen console xvc0 https://bugzilla.redhat.com/show_bug.cgi?id=726976 --- diff --git a/src/99-systemd.rules.in b/src/99-systemd.rules.in index e0aa49da8..6aaf8278b 100644 --- a/src/99-systemd.rules.in +++ b/src/99-systemd.rules.in @@ -8,7 +8,7 @@ ACTION=="remove", GOTO="systemd_end" SUBSYSTEM=="tty", KERNEL=="tty[0-9]|tty1[0-2]", TAG+="systemd" -SUBSYSTEM=="tty", KERNEL=="tty[a-zA-Z]*|hvc*", TAG+="systemd" +SUBSYSTEM=="tty", KERNEL=="tty[a-zA-Z]*|hvc*|xvc*", TAG+="systemd" KERNEL=="vport*", TAG+="systemd" diff --git a/src/getty-generator.c b/src/getty-generator.c index 683775a4d..141402bd1 100644 --- a/src/getty-generator.c +++ b/src/getty-generator.c @@ -119,6 +119,14 @@ int main(int argc, char *argv[]) { if (add_symlink("serial-getty@.service", "serial-getty@hvc0.service") < 0) r = EXIT_FAILURE; + + } + + if (access("/sys/class/tty/xvc0", F_OK) == 0) { + log_debug("Automatic adding serial getty for xvc0."); + + if (add_symlink("serial-getty@.service", "serial-getty@xvc0.service") < 0) + r = EXIT_FAILURE; } finish: