Compare commits
3 Commits
ed0edb30c9
...
c39053faa2
Author | SHA1 | Date |
---|---|---|
Lennart Poettering | c39053faa2 | |
Christian Hesse | c946b13575 | |
Lennart Poettering | c6c73d561a |
|
@ -732,9 +732,13 @@ static int plymouth_send_text(const char *text) {
|
|||
assert(text);
|
||||
|
||||
c = asprintf(&plymouth_message,
|
||||
"r%c" /* reactivate */
|
||||
"M\x02%c%s%c"
|
||||
"A%c", /* pause spinner */
|
||||
"A%c" /* pause spinner */
|
||||
"D%c", /* deactivate */
|
||||
'\x00',
|
||||
(int) strlen(text) + 1, text, '\x00',
|
||||
'\x00',
|
||||
'\x00');
|
||||
if (c < 0)
|
||||
return log_oom();
|
||||
|
|
|
@ -13,11 +13,12 @@
|
|||
|
||||
d /run/lock 0755 root root -
|
||||
L /var/lock - - - - ../run/lock
|
||||
|
||||
{% if HAVE_SYSV_COMPAT %}
|
||||
{% if CREATE_LOG_DIRS %}
|
||||
L$ /var/log/README - - - - ../..{{DOC_DIR}}/README.logs
|
||||
{% endif %}
|
||||
|
||||
{% if HAVE_SYSV_COMPAT %}
|
||||
# /run/lock/subsys is used for serializing SysV service execution, and
|
||||
# hence without use on SysV-less systems.
|
||||
d /run/lock/subsys 0755 root root -
|
||||
|
|
Loading…
Reference in New Issue