diff options
author | Pavel Zhukov <pavel@zhukoff.net> | 2022-06-21 09:07:58 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-21 18:44:27 +0100 |
commit | 081d1410a03e9bc180d082452d5e1543cd8f8dfa (patch) | |
tree | 8ae158276c7099ea7388c5a7d52d8530a70c8eb3 /meta/recipes-core/systemd | |
parent | ffc3051d09ce85c626301addef9704610ef2b24f (diff) | |
download | poky-081d1410a03e9bc180d082452d5e1543cd8f8dfa.tar.gz |
systemd: Add missed sys/file.h includes for musl
(From OE-Core rev: 526e0ab4275a130b354090ac42a6147f5660e169)
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd')
-rw-r--r-- | meta/recipes-core/systemd/systemd/0001-Add-sys-file.h-for-LOCK_.patch | 78 | ||||
-rw-r--r-- | meta/recipes-core/systemd/systemd_251.2.bb | 1 |
2 files changed, 79 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd/0001-Add-sys-file.h-for-LOCK_.patch b/meta/recipes-core/systemd/systemd/0001-Add-sys-file.h-for-LOCK_.patch new file mode 100644 index 0000000000..a3e148ec3b --- /dev/null +++ b/meta/recipes-core/systemd/systemd/0001-Add-sys-file.h-for-LOCK_.patch | |||
@@ -0,0 +1,78 @@ | |||
1 | From c193380a08f5adea1fd514e0a20abd1d7b50d08c Mon Sep 17 00:00:00 2001 | ||
2 | From: Pavel Zhukov <pavel.zhukov@huawei.com> | ||
3 | Date: Mon, 20 Jun 2022 11:24:52 +0200 | ||
4 | Subject: [PATCH] Add sys/file.h for LOCK_ | ||
5 | |||
6 | Upstream-Status: Submitted [https://github.com/systemd/systemd/pull/23790] | ||
7 | |||
8 | Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com> | ||
9 | |||
10 | --- | ||
11 | src/core/namespace.c | 1 + | ||
12 | src/dissect/dissect.c | 1 + | ||
13 | src/shared/dissect-image.c | 2 ++ | ||
14 | src/sysext/sysext.c | 1 + | ||
15 | src/test/test-loop-block.c | 1 + | ||
16 | 5 files changed, 6 insertions(+) | ||
17 | |||
18 | diff --git a/src/core/namespace.c b/src/core/namespace.c | ||
19 | index 926aa96174..39f9e21c93 100644 | ||
20 | --- a/src/core/namespace.c | ||
21 | +++ b/src/core/namespace.c | ||
22 | @@ -7,6 +7,7 @@ | ||
23 | #include <sys/mount.h> | ||
24 | #include <unistd.h> | ||
25 | #include <linux/fs.h> | ||
26 | +#include <sys/file.h> | ||
27 | |||
28 | #include "alloc-util.h" | ||
29 | #include "base-filesystem.h" | ||
30 | diff --git a/src/dissect/dissect.c b/src/dissect/dissect.c | ||
31 | index bd94a755db..a0d2a6f287 100644 | ||
32 | --- a/src/dissect/dissect.c | ||
33 | +++ b/src/dissect/dissect.c | ||
34 | @@ -6,6 +6,7 @@ | ||
35 | #include <stdio.h> | ||
36 | #include <sys/ioctl.h> | ||
37 | #include <sys/mount.h> | ||
38 | +#include <sys/file.h> | ||
39 | |||
40 | #include "architecture.h" | ||
41 | #include "chase-symlinks.h" | ||
42 | diff --git a/src/shared/dissect-image.c b/src/shared/dissect-image.c | ||
43 | index 1ab88839aa..a9e3fe4b44 100644 | ||
44 | --- a/src/shared/dissect-image.c | ||
45 | +++ b/src/shared/dissect-image.c | ||
46 | @@ -4,6 +4,8 @@ | ||
47 | #include <valgrind/memcheck.h> | ||
48 | #endif | ||
49 | |||
50 | +#include <sys/file.h> | ||
51 | + | ||
52 | #include <linux/blkpg.h> | ||
53 | #include <linux/dm-ioctl.h> | ||
54 | #include <linux/loop.h> | ||
55 | diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c | ||
56 | index 364af195e0..85686c0fab 100644 | ||
57 | --- a/src/sysext/sysext.c | ||
58 | +++ b/src/sysext/sysext.c | ||
59 | @@ -5,6 +5,7 @@ | ||
60 | #include <linux/loop.h> | ||
61 | #include <sys/mount.h> | ||
62 | #include <unistd.h> | ||
63 | +#include <sys/file.h> | ||
64 | |||
65 | #include "capability-util.h" | ||
66 | #include "chase-symlinks.h" | ||
67 | diff --git a/src/test/test-loop-block.c b/src/test/test-loop-block.c | ||
68 | index d1793222f0..6886c4cd31 100644 | ||
69 | --- a/src/test/test-loop-block.c | ||
70 | +++ b/src/test/test-loop-block.c | ||
71 | @@ -3,6 +3,7 @@ | ||
72 | #include <fcntl.h> | ||
73 | #include <linux/loop.h> | ||
74 | #include <pthread.h> | ||
75 | +#include <sys/file.h> | ||
76 | |||
77 | #include "alloc-util.h" | ||
78 | #include "dissect-image.h" | ||
diff --git a/meta/recipes-core/systemd/systemd_251.2.bb b/meta/recipes-core/systemd/systemd_251.2.bb index 5a21e7b513..5b2737faa2 100644 --- a/meta/recipes-core/systemd/systemd_251.2.bb +++ b/meta/recipes-core/systemd/systemd_251.2.bb | |||
@@ -51,6 +51,7 @@ SRC_URI_MUSL = "\ | |||
51 | file://0001-pass-correct-parameters-to-getdents64.patch \ | 51 | file://0001-pass-correct-parameters-to-getdents64.patch \ |
52 | file://0002-Add-sys-stat.h-for-S_IFDIR.patch \ | 52 | file://0002-Add-sys-stat.h-for-S_IFDIR.patch \ |
53 | file://0001-Adjust-for-musl-headers.patch \ | 53 | file://0001-Adjust-for-musl-headers.patch \ |
54 | file://0001-Add-sys-file.h-for-LOCK_.patch \ | ||
54 | " | 55 | " |
55 | 56 | ||
56 | PAM_PLUGINS = " \ | 57 | PAM_PLUGINS = " \ |