Browse Source

uClibc-ng: update to 1.0.55

Waldemar Brodkorb 2 days ago
parent
commit
e5cdbdacc1

+ 3 - 3
target/config/Config.in.libc

@@ -148,8 +148,8 @@ choice
 prompt "Target C library version"
 depends on !ADK_TARGET_CHOOSE_ARCH
 
-config ADK_TARGET_LIB_UCLIBC_NG_1_0_54
-	bool "1.0.54"
+config ADK_TARGET_LIB_UCLIBC_NG_1_0_55
+	bool "1.0.55"
 	depends on ADK_TARGET_LIB_UCLIBC_NG
 
 config ADK_TARGET_LIB_UCLIBC_NG_GIT
@@ -198,7 +198,7 @@ config ADK_TARGET_LIBC
 
 config ADK_LIBC_VERSION
 	string
-	default "1.0.54" if ADK_TARGET_LIB_UCLIBC_NG_1_0_54
+	default "1.0.55" if ADK_TARGET_LIB_UCLIBC_NG_1_0_55
 	default "1.2.5" if ADK_TARGET_LIB_MUSL_1_2_5
 	default "2.42" if ADK_TARGET_LIB_GLIBC_2_42
 	default "4.4.0" if ADK_TARGET_LIB_NEWLIB_4_4_0

+ 4 - 4
toolchain/uclibc-ng/Makefile.inc

@@ -7,10 +7,10 @@ PKG_VERSION:=		git
 PKG_RELEASE:=		1
 PKG_SITES:=		https://git.uclibc-ng.org/git/uclibc-ng.git
 endif
-ifeq ($(ADK_TARGET_LIB_UCLIBC_NG_1_0_54),y)
-PKG_VERSION:=		1.0.54
+ifeq ($(ADK_TARGET_LIB_UCLIBC_NG_1_0_55),y)
+PKG_VERSION:=		1.0.55
 PKG_RELEASE:=		1
-PKG_SITES:=		http://downloads.uclibc-ng.org/releases/1.0.54/
-PKG_HASH:=		6c46d8e75b466dcb0882ab652ac45b2606af4d8cb892b9182795ba5f3ccec24f
+PKG_SITES:=		http://downloads.uclibc-ng.org/releases/1.0.55/
+PKG_HASH:=		005aed346789fad2c043f76e99425258a95af3121ebf3e255d33086930ad1272
 endif
 DISTFILES:=		$(PKG_NAME)-$(PKG_VERSION).tar.gz

+ 0 - 10
toolchain/uclibc-ng/patches/1.0.50/warn-instead-of-error.patch

@@ -1,10 +0,0 @@
-diff -Nur uClibc-ng-1.0.50.orig/libc/sysdeps/linux/common/clock_adjtime.c uClibc-ng-1.0.50/libc/sysdeps/linux/common/clock_adjtime.c
---- uClibc-ng-1.0.50.orig/libc/sysdeps/linux/common/clock_adjtime.c	2024-08-13 04:08:05.000000000 +0200
-+++ uClibc-ng-1.0.50/libc/sysdeps/linux/common/clock_adjtime.c	2024-12-14 11:28:37.188207576 +0100
-@@ -15,5 +15,5 @@
- #elif defined(__NR_clock_adjtime)
- _syscall2(int, clock_adjtime, clockid_t, clock_id, struct timex*, ntx)
- #else
--#error "clock_adjtime syscall is not defined!"
-+#warning "clock_adjtime syscall is not defined!"
- #endif