summaryrefslogtreecommitdiff
path: root/config/libc_uClibc.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-02-24 11:00:05 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-02-24 11:00:05 (GMT)
commit1906cf93f86d8d66f45f90380a8d3da25c087ee5 (patch)
tree90916c99abe1f1ec26709ee420e6c349eda4670a /config/libc_uClibc.in
parent2609573aede4ce198b3462976725b25eb1637d2e (diff)
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!". Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup. That means I'm putting backups in place in the afternoon. That also means we've lost history... :-(
Diffstat (limited to 'config/libc_uClibc.in')
-rw-r--r--config/libc_uClibc.in92
1 files changed, 92 insertions, 0 deletions
diff --git a/config/libc_uClibc.in b/config/libc_uClibc.in
new file mode 100644
index 0000000..f693912
--- /dev/null
+++ b/config/libc_uClibc.in
@@ -0,0 +1,92 @@
+# uClibc options
+
+choice
+ bool
+ prompt "uClibc version"
+
+config LIBC_V_snapshot
+ bool
+ prompt "latest snapshot"
+
+config LIBC_V_specific_date
+ bool
+ prompt "<specific date>"
+
+config LIBC_V_0_9_26
+ bool
+ prompt "0.9.26"
+
+config LIBC_V_0_9_27
+ bool
+ prompt "0.9.27"
+
+config LIBC_V_0_9_28
+ bool
+ prompt "0.9.28"
+
+config LIBC_V_0_9_28_1
+ bool
+ prompt "0.9.28.1"
+
+config LIBC_V_0_9_28_2
+ bool
+ prompt "0.9.28.2"
+
+# CT_INSERT_VERSION_ABOVE
+# Don't remove above line!
+endchoice
+
+config LIBC_VERSION
+ string
+ prompt "Enter date (YYYYMMDD)" if LIBC_V_specific_date
+ default "snapshot" if LIBC_V_snapshot
+ default "0.9.26" if LIBC_V_0_9_26
+ default "0.9.27" if LIBC_V_0_9_27
+ default "0.9.28" if LIBC_V_0_9_28
+ default "0.9.28.1" if LIBC_V_0_9_28_1
+ default "0.9.28.2" if LIBC_V_0_9_28_2
+# CT_INSERT_VERSION_STRING_ABOVE
+# Don't remove qbove line!
+
+choice
+ bool
+ prompt "Debug level"
+ default LIBC_UCLIBC_DEBUG_LEVEL_0
+
+config LIBC_UCLIBC_DEBUG_LEVEL_0
+ bool
+ prompt "none"
+
+config LIBC_UCLIBC_DEBUG_LEVEL_1
+ bool
+ prompt "minimal"
+
+config LIBC_UCLIBC_DEBUG_LEVEL_2
+ bool
+ prompt "all"
+
+endchoice
+
+config LIBC_UCLIBC_DEBUG_LEVEL
+ int
+ default 0 if LIBC_UCLIBC_DEBUG_LEVEL_0
+ default 1 if LIBC_UCLIBC_DEBUG_LEVEL_1
+ default 2 if LIBC_UCLIBC_DEBUG_LEVEL_2
+
+config LIBC_UCLIBC_CONFIG_FILE
+ string
+ prompt "Configuration file"
+ default ""
+ help
+ Path to the configuration file.
+
+ You _must_ provide one (for now).
+
+config LIBC_UCLIBC_LOCALES
+ bool
+ prompt "Add support for locales"
+ default n
+ help
+ Say y if you want uClibc to support localisation.
+
+ Note that seems to be broken on recent uClibc releases.