diff options
-rw-r--r-- | target/config/Config.in.libc | 6 | ||||
-rw-r--r-- | toolchain/uclibc-ng/Makefile.inc | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/target/config/Config.in.libc b/target/config/Config.in.libc index a4f3e32c2..7129cf934 100644 --- a/target/config/Config.in.libc +++ b/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_53 - bool "1.0.53" +config ADK_TARGET_LIB_UCLIBC_NG_1_0_54 + bool "1.0.54" 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.53" if ADK_TARGET_LIB_UCLIBC_NG_1_0_53 + default "1.0.54" if ADK_TARGET_LIB_UCLIBC_NG_1_0_54 default "1.2.5" if ADK_TARGET_LIB_MUSL_1_2_5 default "2.41" if ADK_TARGET_LIB_GLIBC_2_40 default "4.4.0" if ADK_TARGET_LIB_NEWLIB_4_4_0 diff --git a/toolchain/uclibc-ng/Makefile.inc b/toolchain/uclibc-ng/Makefile.inc index 1cbc8a30c..7b345c52d 100644 --- a/toolchain/uclibc-ng/Makefile.inc +++ b/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_53),y) -PKG_VERSION:= 1.0.53 +ifeq ($(ADK_TARGET_LIB_UCLIBC_NG_1_0_54),y) +PKG_VERSION:= 1.0.54 PKG_RELEASE:= 1 -PKG_SITES:= http://downloads.uclibc-ng.org/releases/1.0.53/ -PKG_HASH:= 570e491075f1d6592480f65b1dcbb01f24f0681ddba1bf418ebb25687cd13682 +PKG_SITES:= http://downloads.uclibc-ng.org/releases/1.0.54/ +PKG_HASH:= 6c46d8e75b466dcb0882ab652ac45b2606af4d8cb892b9182795ba5f3ccec24f endif DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz |