mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
units: order sysinit.target, debug-shell.service after systemd-vconsole-setup
Previous patch to add an implicit dependency effectively orders various getty
services after systemd-vconsole-setup.service. But I think it's cleaner to also
order the service before sysinit.target, like it was before
8125e8d38e. There might be units which don't do
use TTYVHangup= but would like to have the console fully initialized.
Also, add a manual ordering to debug-shell.service, because it has
ImplicitDependencies=no. This might delay debug-shell.service a bit, but
systemd-vconsole-setup.service has no dependencies and should be very quick, so
this should not be noticable in practice. Without the ordering, the terminal
might not have a key map loaded, making debug-shell.service hard to use.
This commit is contained in:
@@ -13,6 +13,7 @@ Documentation=man:systemd-debug-generator(8)
|
|||||||
DefaultDependencies=no
|
DefaultDependencies=no
|
||||||
IgnoreOnIsolate=yes
|
IgnoreOnIsolate=yes
|
||||||
ConditionPathExists={{DEBUGTTY}}
|
ConditionPathExists={{DEBUGTTY}}
|
||||||
|
After=systemd-vconsole-setup.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Environment=TERM=linux
|
Environment=TERM=linux
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
Description=Setup Virtual Console
|
Description=Setup Virtual Console
|
||||||
Documentation=man:systemd-vconsole-setup.service(8) man:vconsole.conf(5)
|
Documentation=man:systemd-vconsole-setup.service(8) man:vconsole.conf(5)
|
||||||
DefaultDependencies=no
|
DefaultDependencies=no
|
||||||
|
Before=sysinit.target
|
||||||
Before=initrd-switch-root.target shutdown.target
|
Before=initrd-switch-root.target shutdown.target
|
||||||
ConditionPathExists=/dev/tty0
|
ConditionPathExists=/dev/tty0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user