diff options
author | David Holsgrove <david.holsgrove@xilinx.com> | 2012-10-11 14:39:44 +1000 |
---|---|---|
committer | David Holsgrove <david.holsgrove@xilinx.com> | 2012-10-11 14:39:44 +1000 |
commit | 5ed8715c9d5b24d1bc2545255f7a5743a629bb75 (patch) | |
tree | 5491e40b930ddce4a532532ac5d642ce340ccd82 /config | |
parent | 88f065b355fe0dbf1bd7ceab1fafa775b9721ef4 (diff) | |
download | crosstool-ng-5ed8715c9d5b24d1bc2545255f7a5743a629bb75.tar.gz crosstool-ng-5ed8715c9d5b24d1bc2545255f7a5743a629bb75.tar.bz2 crosstool-ng-5ed8715c9d5b24d1bc2545255f7a5743a629bb75.zip |
libc/uClibc: Add CUSTOM version and CUSTOM_LOCATION config options and GetCustom
CUSTOM_LOCATION config options only presented in menuconfig if component
CUSTOM version selected.
Signed-off-by: "David Holsgrove" <david.holsgrove@xilinx.com>
[yann.morin.1998@free.fr: fix indentation, don't patch custom dir location]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <712995e3e719fbbe24af.1349931201@localhost.localdomain>
PatchWork-Id: 190794
Diffstat (limited to 'config')
-rw-r--r-- | config/libc/uClibc.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index 359cd42a..9a8d946d 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -99,8 +99,27 @@ config LIBC_UCLIBC_V_specific_date select LIBC_SUPPORT_NPTL select LIBC_UCLIBC_0_9_30_or_later +config LIBC_UCLIBC_CUSTOM + bool + prompt "Custom uClibc" + depends on EXPERIMENTAL + select LIBC_SUPPORT_NPTL + select LIBC_UCLIBC_0_9_30_or_later + endchoice +if LIBC_UCLIBC_CUSTOM + +config LIBC_UCLIBC_CUSTOM_LOCATION + string + prompt "Full path to custom uClibc source" + default "" + help + Enter the path to the directory (or tarball) of your source for uClibc, + or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/uClibc + +endif # LIBC_UCLIBC_CUSTOM + config LIBC_VERSION string prompt "Enter date (YYYYMMDD)" if LIBC_UCLIBC_V_specific_date @@ -119,6 +138,7 @@ config LIBC_VERSION default "0.9.29" if LIBC_UCLIBC_V_0_9_29 default "0.9.28.3" if LIBC_UCLIBC_V_0_9_28_3 default "snapshot" if LIBC_UCLIBC_V_snapshot + default "custom" if LIBC_UCLIBC_CUSTOM config LIBC_UCLIBC_0_9_32_or_later bool |