mirror of
https://github.com/systemd/systemd.git
synced 2025-03-31 14:50:15 +03:00
Merge pull request #21386 from keszybz/binfmt-later
Order binfmt.service after local-fs.target
This commit is contained in:
commit
032e11a234
@ -44,9 +44,8 @@
|
||||
url="https://www.kernel.org/doc/html/latest/admin-guide/binfmt-misc.html">binfmt-misc.rst</ulink> documentation
|
||||
file for more information on registration of additional binary formats and how to write rules.</para>
|
||||
|
||||
<para>Empty lines and lines beginning with ; and # are ignored.
|
||||
Note that this means you may not use ; and # as delimiter in
|
||||
binary format rules.</para>
|
||||
<para>Empty lines and lines beginning with <literal>;</literal> and <literal>#</literal> are ignored.
|
||||
Note that this means you may not use those symbols as the delimiter in binary format rules.</para>
|
||||
</refsect1>
|
||||
|
||||
<xi:include href="standard-conf.xml" xpointer="confd" />
|
||||
|
@ -13,7 +13,7 @@ static inline void _reset_errno_(int *saved_errno) {
|
||||
errno = *saved_errno;
|
||||
}
|
||||
|
||||
#define PROTECT_ERRNO \
|
||||
#define PROTECT_ERRNO \
|
||||
_cleanup_(_reset_errno_) _unused_ int _saved_errno_ = errno
|
||||
|
||||
#define UNPROTECT_ERRNO \
|
||||
|
@ -16,6 +16,7 @@ DefaultDependencies=no
|
||||
Conflicts=shutdown.target
|
||||
After=proc-sys-fs-binfmt_misc.automount
|
||||
After=proc-sys-fs-binfmt_misc.mount
|
||||
After=local-fs.target
|
||||
Before=sysinit.target shutdown.target
|
||||
ConditionPathIsReadWrite=/proc/sys/
|
||||
ConditionDirectoryNotEmpty=|/lib/binfmt.d
|
||||
|
Loading…
x
Reference in New Issue
Block a user