Эх сурвалжийг харах

uclibc-ng: drop unused patches, as 1.0.59 is out

Waldemar Brodkorb 1 долоо хоног өмнө
parent
commit
8ccea84780

+ 0 - 25
toolchain/uclibc-ng/patches/1.0.58/0001-sys-fanotify.h-drop-include-to-fix-c-sky-compilation.patch

@@ -1,25 +0,0 @@
-From c172f40f65478bc4a344a3abb45a031250c97153 Mon Sep 17 00:00:00 2001
-From: Waldemar Brodkorb <wbx@openadk.org>
-Date: Tue, 26 May 2026 20:38:01 +0200
-Subject: [PATCH 4/4] sys/fanotify.h: drop include to fix c-sky compilation
-
-Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
----
- libc/sysdeps/linux/common/sys/fanotify.h | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/libc/sysdeps/linux/common/sys/fanotify.h b/libc/sysdeps/linux/common/sys/fanotify.h
-index 88916720c..9774ba3ea 100644
---- a/libc/sysdeps/linux/common/sys/fanotify.h
-+++ b/libc/sysdeps/linux/common/sys/fanotify.h
-@@ -18,7 +18,6 @@
- #ifndef	_SYS_FANOTIFY_H
- #define	_SYS_FANOTIFY_H	1
- 
--#include <linux/types.h>
- #include <stdint.h>
- #include <sys/statfs.h>
- 
--- 
-2.47.3
-

+ 0 - 39
toolchain/uclibc-ng/patches/1.0.58/0002-adjtimex-fix-for-architectures-lacking-__NR_clock_ad.patch

@@ -1,39 +0,0 @@
-From 2e7fff27755bcae26ded0ab2394cfbe13017fec4 Mon Sep 17 00:00:00 2001
-From: Waldemar Brodkorb <wbx@openadk.org>
-Date: Tue, 26 May 2026 21:23:42 +0200
-Subject: [PATCH] adjtimex: fix for architectures lacking __NR_clock_adjtime,
- f.e. frv
-
-Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
----
- libc/sysdeps/linux/common/adjtimex.c | 8 ++++++++
- 1 file changed, 8 insertions(+)
-
-diff --git a/libc/sysdeps/linux/common/adjtimex.c b/libc/sysdeps/linux/common/adjtimex.c
-index 92c628296..af57a370a 100644
---- a/libc/sysdeps/linux/common/adjtimex.c
-+++ b/libc/sysdeps/linux/common/adjtimex.c
-@@ -6,12 +6,20 @@
-  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
-  */
- 
-+#include <sys/syscall.h>
- #include <sys/timex.h>
- #include <time.h>
- 
- int adjtimex(struct timex *buf)
- {
-+#ifdef __NR_clock_adjtime
-     return clock_adjtime(CLOCK_REALTIME, buf);
-+#elif defined(__NR_adjtimex)
-+    return syscall(__NR_adjtimex, buf);
-+#else
-+    errno = ENOSYS;
-+    return -1;
-+#endif
- }
- 
- libc_hidden_def(adjtimex)
--- 
-2.47.3
-