diff options
author | Michal Soltys <soltys@ziu.info> | 2016-10-21 16:11:39 +0200 |
---|---|---|
committer | Michal Soltys <soltys@ziu.info> | 2016-10-21 16:30:27 +0200 |
commit | 6b169c13ecf645a0a341f49b9dc2afb312a74206 (patch) | |
tree | 2809d5233be86d057ee7e7f25bb0b46602283d6f /src/vconsole | |
parent | 5138a901b1d27be9c6a6e73b8e139aa7125f2bb0 (diff) |
vconsole: skip unnecessary udev call for dummy device
In particular, the font copying has no chance of succeeding as
the required functionality is not implemented, see:
drivers/video/console/dummycon.c
Diffstat (limited to 'src/vconsole')
-rw-r--r-- | src/vconsole/90-vconsole.rules.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vconsole/90-vconsole.rules.in b/src/vconsole/90-vconsole.rules.in index 35b9ad5151..84b4d575bd 100644 --- a/src/vconsole/90-vconsole.rules.in +++ b/src/vconsole/90-vconsole.rules.in @@ -7,4 +7,4 @@ # Each vtcon keeps its own state of fonts. # -ACTION=="add", SUBSYSTEM=="vtconsole", KERNEL=="vtcon*", RUN+="@rootlibexecdir@/systemd-vconsole-setup" +ACTION=="add", SUBSYSTEM=="vtconsole", KERNEL=="vtcon*", ATTR{name}!="*dummy device", RUN+="@rootlibexecdir@/systemd-vconsole-setup" |