vconsole: don't hard-code systemd-vconsole-setup binary path

This commit is contained in:
Michael Biebl 2014-11-29 06:35:38 +01:00
parent 6c03d27d9f
commit 3b0ed75c35
3 changed files with 7 additions and 2 deletions

View file

@ -4478,14 +4478,18 @@ rootlibexec_PROGRAMS += \
nodist_systemunit_DATA += \
units/systemd-vconsole-setup.service
dist_udevrules_DATA += \
nodist_udevrules_DATA += \
src/vconsole/90-vconsole.rules
SYSINIT_TARGET_WANTS += \
systemd-vconsole-setup.service
CLEANFILES += \
src/vconsole/90-vconsole.rules
endif
EXTRA_DIST += \
src/vconsole/90-vconsole.rules.in \
units/systemd-vconsole-setup.service.in
# ------------------------------------------------------------------------------

1
src/vconsole/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/90-vconsole.rules

View file

@ -8,4 +8,4 @@
# Kernel resets vconsole state when changing console drivers so run
# systemd-vconsole-setup when fbcon loads
ACTION=="add", SUBSYSTEM=="graphics", KERNEL=="fbcon", RUN+="/usr/lib/systemd/systemd-vconsole-setup"
ACTION=="add", SUBSYSTEM=="graphics", KERNEL=="fbcon", RUN+="@rootlibexecdir@/systemd-vconsole-setup"