summaryrefslogtreecommitdiffstats
path: root/rules/uclibc.in
diff options
context:
space:
mode:
authorLadislav Michl <ladis@linux-mips.org>2007-03-19 15:40:46 +0000
committerLadislav Michl <ladis@linux-mips.org>2007-03-19 15:40:46 +0000
commit103aaa551a71411ac5aef45863560872e9112a30 (patch)
tree8036b354b492d0a1e42589a9fcf5549c24f31d6d /rules/uclibc.in
parentf1b31996906c532b149f2d59421eeccfd6bd811e (diff)
downloadOSELAS.Toolchain-103aaa551a71411ac5aef45863560872e9112a30.tar.gz
OSELAS.Toolchain-103aaa551a71411ac5aef45863560872e9112a30.tar.xz
Premiliary uClibc support.
git-svn-id: https://svn.pengutronix.de/svn/oselas/toolchain/trunks/OSELAS.Toolchain-trunk@2257 f8d472c7-5700-0410-ac5a-87979cec3adf
Diffstat (limited to 'rules/uclibc.in')
-rw-r--r--rules/uclibc.in39
1 files changed, 33 insertions, 6 deletions
diff --git a/rules/uclibc.in b/rules/uclibc.in
index a2a0723..21df458 100644
--- a/rules/uclibc.in
+++ b/rules/uclibc.in
@@ -6,14 +6,41 @@ menuconfig UCLIBC
select CROSS_GCC_THREADS_POSIX
prompt "uclibc "
-config UCLIBC_VERSION
+choice
depends on UCLIBC
- string
prompt "uclibc version"
- default "0.9.28"
+
+ config UCLIBC_VERSION_0_9_28
+ bool "0.9.28"
+
+ config UCLIBC_VERSION_0_9_29
+ bool "0.9.29"
+
help
Specify the uclibc version here.
+endchoice
+
+config UCLIBC_VERSION
+ depends on UCLIBC
+ string
+ default "0.9.28" if UCLIBC_VERSION_0_9_28
+ default "0.9.29" if UCLIBC_VERSION_0_9_29
+
+config UCLIBC_RELEASE
+ depends on UCLIBC
+ string
+ prompt "uclibc release "
+ default ""
+ help
+ Specify the uclibc bugfix release number.
+
+menu "uClibc options "
+ depends on UCLIBC
+if UCLIBC_VERSION_0_9_28
+source "workspace/config/uClibc-0.9.28/Config.in"
+endif
+if UCLIBC_VERSION_0_9_29
+#source "workspace/config/uClibc-0.9.29/Config.in"
+endif
+endmenu
-config UCLIBC_HEADERS
- bool
- select KERNEL_HEADERS