mirror of
git://git.yoctoproject.org/poky
synced 2026-08-16 13:27:38 +00:00
Latest stable branch update which includes 396 commits and the full
list of changes can be found at:
https://github.com/systemd/systemd-stable/compare/v250.5...v250.14
All the patches were refreshed with devtool.
Backported this upstreamed patch to resolve the compile error while
building systemd with qemumips machine.
- 0001-core-fix-build-when-seccomp-is-off.patch
These 2 below patches were modified to resolve the merge conflicts
introduced by systemd v250.14 version:
1. 0001-Move-sysusers.d-sysctl.d-binfmt.d-modules-load.d-to-.patch
- This patch was just adjusted based on the systemd v250.14 version.
2. 0001-pass-correct-parameters-to-getdents64.patch
- For this patch, there was a commit reverted as part of the v250.8 tag:
51089e007f
These below 6 patches were dropped as systemd v250.14 already has
the changes:
- 0001-shared-json-allow-json_variant_dump-to-return-an-err.patch
- CVE-2022-3821.patch
- CVE-2022-4415-1.patch
- CVE-2022-4415-2.patch
- CVE-2022-45873.patch
- CVE-2023-7008.patch
(From OE-Core rev: 371d030a665e3c963a586ab02d10f1f36b225435)
Signed-off-by: Narpat Mali <narpat.falna@gmail.com>
Signed-off-by: Randy Macleod <randy.macleod@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 4f39aa56e738d99ac04e73ba75713db7e05f7252 Mon Sep 17 00:00:00 2001
|
|
From: Chen Qi <Qi.Chen@windriver.com>
|
|
Date: Mon, 25 Feb 2019 16:53:06 +0800
|
|
Subject: [PATCH] test-json.c: define M_PIl
|
|
|
|
Fix the following compile failure:
|
|
src/test/test-json.c:305:50: error: 'M_PIl' undeclared (first use in this function); did you mean 'M_PI'?
|
|
|
|
Upstream-Status: Inappropriate [musl specific]
|
|
|
|
This is fixed upstream where systemd no longer needs M_PIl so it could
|
|
be dropped when upgrading to 251+ see
|
|
https://github.com/systemd/systemd/commit/f9a1fd2a3b2d8212ba84ef1c3b55657ced34475e
|
|
|
|
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
|
|
|
|
---
|
|
src/test/test-json.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/test/test-json.c b/src/test/test-json.c
|
|
index 2aecbe3557..f7112dc374 100644
|
|
--- a/src/test/test-json.c
|
|
+++ b/src/test/test-json.c
|
|
@@ -14,6 +14,10 @@
|
|
#include "tests.h"
|
|
#include "util.h"
|
|
|
|
+#ifndef M_PIl
|
|
+#define M_PIl 3.141592653589793238462643383279502884L
|
|
+#endif
|
|
+
|
|
static void test_tokenizer_one(const char *data, ...) {
|
|
unsigned line = 0, column = 0;
|
|
void *state = NULL;
|