summaryrefslogtreecommitdiffstats
path: root/rules/uclibc.in
blob: 21df4589968368d12be6b01ed266c99c36bdd541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# config for uclibc

menuconfig UCLIBC
	bool
	select CROSS_GCC_SHARED
	select CROSS_GCC_THREADS_POSIX
	prompt "uclibc                      "

choice
	depends on UCLIBC
	prompt "uclibc version"

	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