mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
systemd: Drop two upstreamed musl patches
(From OE-Core rev: 7eea9e63a155c9ed30706cc7926a6728d629bd5e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 2 Aug 2023 10:33:48 -0700
|
||||
Subject: [PATCH] include sys/file.h for LOCK_EX
|
||||
|
||||
Fixes
|
||||
| ../git/src/basic/user-util.c:708:30: error: use of undeclared identifier 'LOCK_EX'; did you mean 'LOCK_BSD'?
|
||||
| 708 | r = unposix_lock(fd, LOCK_EX);
|
||||
| | ^~~~~~~
|
||||
| | LOCK_BSD
|
||||
|
||||
Upstream-Status: Backport [https://github.com/systemd/systemd/pull/28647]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/basic/user-util.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/basic/user-util.c b/src/basic/user-util.c
|
||||
index fe61a09005..5c39847733 100644
|
||||
--- a/src/basic/user-util.c
|
||||
+++ b/src/basic/user-util.c
|
||||
@@ -6,6 +6,7 @@
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <sys/file.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <utmp.h>
|
||||
@@ -1,28 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 2 Aug 2023 12:14:56 -0700
|
||||
Subject: [PATCH] test/test-sizeof: Include sys/timex.h for struct timex
|
||||
|
||||
Fixes
|
||||
|
||||
../git/src/test/test-sizeof.c:64:41: error: incomplete definition of type 'struct timex'
|
||||
64 | check(typeof(((struct timex *)0)->freq), SIZEOF_TIMEX_MEMBER);
|
||||
| ~~~~~~~~~~~~~~~~~~~^
|
||||
|
||||
Upstream-Status: Backport [https://github.com/systemd/systemd/pull/28651]
|
||||
---
|
||||
src/test/test-sizeof.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/test/test-sizeof.c b/src/test/test-sizeof.c
|
||||
index 9d969cf8f1..b65c0bd370 100644
|
||||
--- a/src/test/test-sizeof.c
|
||||
+++ b/src/test/test-sizeof.c
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <string.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/socket.h>
|
||||
+#include <sys/timex.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#define __STDC_WANT_IEC_60559_TYPES_EXT__
|
||||
@@ -1,98 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 2 Aug 2023 12:18:24 -0700
|
||||
Subject: [PATCH] include missing sys/file.h for LOCK_EX
|
||||
|
||||
Upstream-Status: Backport [https://github.com/systemd/systemd/pull/28651]
|
||||
---
|
||||
src/core/execute.c | 1 +
|
||||
src/shared/btrfs-util.c | 1 +
|
||||
src/shared/copy.c | 1 +
|
||||
src/test/test-btrfs.c | 1 +
|
||||
src/test/test-fs-util.c | 1 +
|
||||
src/test/test-lock-util.c | 1 +
|
||||
src/vconsole/vconsole-setup.c | 1 +
|
||||
7 files changed, 7 insertions(+)
|
||||
|
||||
diff --git a/src/core/execute.c b/src/core/execute.c
|
||||
index 5b2ae861ff..2ebf19ffaa 100644
|
||||
--- a/src/core/execute.c
|
||||
+++ b/src/core/execute.c
|
||||
@@ -4,6 +4,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
#include <sys/eventfd.h>
|
||||
+#include <sys/file.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/mount.h>
|
||||
diff --git a/src/shared/btrfs-util.c b/src/shared/btrfs-util.c
|
||||
index 5128b308ab..3ded95ea82 100644
|
||||
--- a/src/shared/btrfs-util.c
|
||||
+++ b/src/shared/btrfs-util.c
|
||||
@@ -10,6 +10,7 @@
|
||||
#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <sys/file.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/sysmacros.h>
|
||||
#include <unistd.h>
|
||||
diff --git a/src/shared/copy.c b/src/shared/copy.c
|
||||
index 241a2d112b..7e47dc002c 100644
|
||||
--- a/src/shared/copy.c
|
||||
+++ b/src/shared/copy.c
|
||||
@@ -6,6 +6,7 @@
|
||||
#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <sys/file.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/sendfile.h>
|
||||
#include <sys/xattr.h>
|
||||
diff --git a/src/test/test-btrfs.c b/src/test/test-btrfs.c
|
||||
index 95b7ef25d8..ba09563058 100644
|
||||
--- a/src/test/test-btrfs.c
|
||||
+++ b/src/test/test-btrfs.c
|
||||
@@ -1,6 +1,7 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
#include <fcntl.h>
|
||||
+#include <sys/file.h>
|
||||
|
||||
#include "btrfs-util.h"
|
||||
#include "fd-util.h"
|
||||
diff --git a/src/test/test-fs-util.c b/src/test/test-fs-util.c
|
||||
index 1beba916a4..5de1eea0d4 100644
|
||||
--- a/src/test/test-fs-util.c
|
||||
+++ b/src/test/test-fs-util.c
|
||||
@@ -1,5 +1,6 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
+#include <sys/file.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "alloc-util.h"
|
||||
diff --git a/src/test/test-lock-util.c b/src/test/test-lock-util.c
|
||||
index a9a1b438ff..28fc54a5d6 100644
|
||||
--- a/src/test/test-lock-util.c
|
||||
+++ b/src/test/test-lock-util.c
|
||||
@@ -1,5 +1,6 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
+#include <sys/file.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "fd-util.h"
|
||||
diff --git a/src/vconsole/vconsole-setup.c b/src/vconsole/vconsole-setup.c
|
||||
index d57d8b4001..86348d08c1 100644
|
||||
--- a/src/vconsole/vconsole-setup.c
|
||||
+++ b/src/vconsole/vconsole-setup.c
|
||||
@@ -11,6 +11,7 @@
|
||||
#include <linux/vt.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
+#include <sys/file.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sysexits.h>
|
||||
#include <termios.h>
|
||||
@@ -54,9 +54,6 @@ SRC_URI_MUSL = "\
|
||||
file://0001-Adjust-for-musl-headers.patch \
|
||||
file://0006-test-bus-error-strerror-is-assumed-to-be-GNU-specifi.patch \
|
||||
file://0003-errno-util-Make-STRERROR-portable-for-musl.patch \
|
||||
file://0025-include-sys-file.h-for-LOCK_EX.patch \
|
||||
file://0026-test-test-sizeof-Include-sys-timex.h-for-struct-time.patch \
|
||||
file://0027-include-missing-sys-file.h-for-LOCK_EX.patch \
|
||||
file://0028-sd-event-Make-malloc_trim-conditional-on-glibc.patch \
|
||||
file://0029-shared-Do-not-use-malloc_info-on-musl.patch \
|
||||
"
|
||||
|
||||
Reference in New Issue
Block a user