networkmanager: upgrade 1.42.0 -> 1.42.4

0001-libnm-std-aux-Adjust-signature-of-_nm_assert_fail_in.patch
removed since it's not available in 1.42.4

Changelog:
==========
* Fix a possible crash when [global-dns] is used and improve the
  documentation.
* Documentation improvements.
* Add build option to set the mobile-broadband-provider-info database
  path.
* Add new "ipv[46].replace-local-rule" setting to control whether to
  remove the local route rule that is automatically generated.
* Add the DHCPv6 IAID to the lease information exposed in /run and on
  D-Bus.
* Fix assuming team connections at boot.
* Fix race condition when setting the MAC address of an OVS interface.
* Fix constructing the IPv4 name servers variable passed to dispatcher
  scripts.
* Don't use tentative IPv6 address to resolve the system hostname via DNS.
* Deprecate the "Master" property of the NMActiveConnection D-Bus object
  in favor of the new "Controller" property.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Wang Mingyu
2023-03-15 22:04:38 +08:00
committed by Khem Raj
parent 0524fafe87
commit 5b2be0c687
2 changed files with 1 additions and 39 deletions
@@ -1,37 +0,0 @@
From 8c8b13768d22f39edfce38e123b740c43d7e31c4 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 18 Feb 2023 17:29:10 -0800
Subject: [PATCH] libnm-std-aux: Adjust signature of _nm_assert_fail_internal
the LSB states __assert_fail is:
const char*, const char*, unsigned int, const char*
https://refspecs.linuxbase.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/baselib---assert-fail-1.html
musl uses a signed int instead. however, this is ok:
https://www.openwall.com/lists/musl/2019/03/04/6
nevertheless, since the application redefines __assert_fail, we have to make
the types match. (not upstreamable as the opposite breaks glibc)
Upstream-Status: Inappropriate [musl specific]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/libnm-std-aux/nm-std-aux.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libnm-std-aux/nm-std-aux.h b/src/libnm-std-aux/nm-std-aux.h
index e556aa4..0756a7c 100644
--- a/src/libnm-std-aux/nm-std-aux.h
+++ b/src/libnm-std-aux/nm-std-aux.h
@@ -230,7 +230,7 @@ typedef uint64_t _nm_bitwise nm_be64_t;
_nm_noreturn static inline void
_nm_assert_fail_internal(const char *assertion,
const char *file,
- unsigned int line,
+ int line,
const char *function)
{
__assert_fail("<dropped>", file, line, "<unknown-fcn>");
--
2.39.2
@@ -30,9 +30,8 @@ SRC_URI = " \
file://enable-dhcpcd.conf \
file://enable-iwd.conf \
"
SRC_URI:append:libc-musl = " file://0001-libnm-std-aux-Adjust-signature-of-_nm_assert_fail_in.patch"
SRC_URI[sha256sum] = "2f6756d507bb6b46716594b67e6fe7491891e1b5b167bbafc5157dfa7753d5b4"
SRC_URI[sha256sum] = "86ee16a2f7f525629133fa0c3dc060caf96ae4f34084eda1c24551951abe5a3c"
S = "${WORKDIR}/NetworkManager-${PV}"