summaryrefslogtreecommitdiff
path: root/target/config/Config.in.libc.choice
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-12-27 18:11:03 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-12-27 18:33:55 +0100
commite88b2dabb69234dbfab57592faf9737a7cd226da (patch)
tree84e83df4427bfed063ea1715753fd4de3e03b873 /target/config/Config.in.libc.choice
parent9135ff3195668f9eb8b7b12f60d047e295e50b8a (diff)
optimize git downloader
We now can use a GIT Hash to set a specific checkout. If this is used, you need to define PKG_HASH. Convert libx264 and wiringPi to the new git downloader. Fix toolchains components to use the new git downloader.
Diffstat (limited to 'target/config/Config.in.libc.choice')
-rw-r--r--target/config/Config.in.libc.choice40
1 files changed, 12 insertions, 28 deletions
diff --git a/target/config/Config.in.libc.choice b/target/config/Config.in.libc.choice
index 6e63c0c37..caec8799b 100644
--- a/target/config/Config.in.libc.choice
+++ b/target/config/Config.in.libc.choice
@@ -5,8 +5,7 @@ choice
prompt "C library"
config ADK_TARGET_LIB_UCLIBC_NG
- prompt "uClibc-ng embedded C library"
- boolean
+ bool "uClibc-ng embedded C library"
select ADK_uclibc_ng
depends on \
!ADK_TARGET_ARCH_AARCH64 && \
@@ -20,8 +19,7 @@ config ADK_TARGET_LIB_UCLIBC_NG
http://uclibc-ng.org
config ADK_TARGET_LIB_MUSL
- prompt "musl C library"
- boolean
+ bool "musl C library"
select ADK_musl
depends on !ADK_TARGET_UCLINUX
depends on \
@@ -36,8 +34,7 @@ config ADK_TARGET_LIB_MUSL
http://musl-libc.org
config ADK_TARGET_LIB_GLIBC
- prompt "GNU C library"
- boolean
+ bool "GNU C library"
select ADK_glibc
depends on !ADK_TARGET_ARCH_ARC
depends on !ADK_TARGET_ARCH_AVR32
@@ -49,8 +46,7 @@ config ADK_TARGET_LIB_GLIBC
http://www.gnu.org/libc
config ADK_TARGET_LIB_UCLIBC
- prompt "uClibc embedded C library"
- boolean
+ bool "uClibc embedded C library"
select ADK_uclibc
depends on \
!ADK_TARGET_ARCH_AARCH64 && \
@@ -70,47 +66,35 @@ choice
prompt "C library version"
config ADK_TARGET_LIB_UCLIBC_NG_GIT
- prompt "git"
- boolean
- select ADK_DISABLE_CHECKSUM
+ bool "git"
depends on ADK_TARGET_LIB_UCLIBC_NG
config ADK_TARGET_LIB_GLIBC_2_20
- prompt "2.20"
- boolean
+ bool "2.20"
depends on ADK_TARGET_LIB_GLIBC
config ADK_TARGET_LIB_GLIBC_2_19
- prompt "2.19"
- boolean
+ bool "2.19"
depends on ADK_TARGET_LIB_GLIBC
config ADK_TARGET_LIB_GLIBC_GIT
- prompt "git"
- boolean
- select ADK_DISABLE_CHECKSUM
+ bool "git"
depends on ADK_TARGET_LIB_GLIBC
config ADK_TARGET_LIB_UCLIBC_GIT
- prompt "git"
- boolean
- select ADK_DISABLE_CHECKSUM
+ bool "git"
depends on ADK_TARGET_LIB_UCLIBC
config ADK_TARGET_LIB_UCLIBC_0_9_33_2
- prompt "0.9.33.2"
- boolean
+ bool "0.9.33.2"
depends on ADK_TARGET_LIB_UCLIBC
config ADK_TARGET_LIB_MUSL_1_1_5
- prompt "1.1.5"
- boolean
+ bool "1.1.5"
depends on ADK_TARGET_LIB_MUSL
config ADK_TARGET_LIB_MUSL_GIT
- prompt "git"
- boolean
- select ADK_DISABLE_CHECKSUM
+ bool "git"
depends on ADK_TARGET_LIB_MUSL
endchoice