diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-03-08 16:07:04 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-03-08 16:07:04 -0500 |
commit | 2eb3007baa24a2248764cb3559806904b9f25314 (patch) | |
tree | fee253595912f5547ac0a9196407547784821326 /target | |
parent | f50581320c535a0c1ed1a0e42c5d39551bc82d19 (diff) |
add support for uClibc-ng 1.0.1
Diffstat (limited to 'target')
-rw-r--r-- | target/config/Config.in.libc.choice | 4 | ||||
-rw-r--r-- | target/config/Config.in.libc.default | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/target/config/Config.in.libc.choice b/target/config/Config.in.libc.choice index 9666e84ec..f410643ce 100644 --- a/target/config/Config.in.libc.choice +++ b/target/config/Config.in.libc.choice @@ -67,6 +67,10 @@ endchoice choice prompt "C library version" +config ADK_TARGET_LIB_UCLIBC_NG_1_0_1 + bool "1.0.1" + depends on ADK_TARGET_LIB_UCLIBC_NG + config ADK_TARGET_LIB_UCLIBC_NG_1_0_0 bool "1.0.0" depends on ADK_TARGET_LIB_UCLIBC_NG diff --git a/target/config/Config.in.libc.default b/target/config/Config.in.libc.default index 9fdbadbd5..e67ea623b 100644 --- a/target/config/Config.in.libc.default +++ b/target/config/Config.in.libc.default @@ -28,6 +28,7 @@ config ADK_TARGET_LIBC config ADK_LIBC_VERSION string + default "1.0.1" if ADK_TARGET_LIB_UCLIBC_NG_1_0_1 default "1.0.0" if ADK_TARGET_LIB_UCLIBC_NG_1_0_0 default "1.1.6" if ADK_TARGET_LIB_MUSL_1_1_6 default "0.9.33.2" if ADK_TARGET_LIB_UCLIBC_0_9_33_2 @@ -38,6 +39,11 @@ config ADK_LIBC_VERSION ADK_TARGET_LIB_MUSL_GIT || \ ADK_TARGET_LIB_GLIBC_GIT +config ADK_TARGET_LIB_UCLIBC_NG_1_0 + bool + default y if ADK_TARGET_LIB_UCLIBC_NG_1_0_0 + default y if ADK_TARGET_LIB_UCLIBC_NG_1_0_1 + config ADK_TARGET_SUFFIX string default "gnueabihf" if ADK_TARGET_LIB_GLIBC && ADK_TARGET_ARCH_ARM && ADK_TARGET_HARD_FLOAT |