The /usr/lib/udev/rules.d/99-systemd.rules file does not tag the "sclp_line*" terminal device and, hence, systemd will not handle it. The result is no agetty run for the LPAR console meaning no local access to the system.
see also https://bugzilla.redhat.com/show_bug.cgi?id=860158 --- rules/99-systemd.rules.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/99-systemd.rules.in b/rules/99-systemd.rules.in index 0923de5..b72488c 100644 --- a/rules/99-systemd.rules.in +++ b/rules/99-systemd.rules.in @@ -7,7 +7,7 @@ ACTION=="remove", GOTO="systemd_end" -SUBSYSTEM=="tty", KERNEL=="tty[a-zA-Z]*|hvc*|xvc*|hvsi*", TAG+="systemd" +SUBSYSTEM=="tty", KERNEL=="tty[a-zA-Z]*|hvc*|xvc*|hvsi*|sclp_line*", TAG+="systemd" KERNEL=="vport*", TAG+="systemd" -- 1.8.1.4 _______________________________________________ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel
