config/libc/libc_uClibc.in
changeset 446 d205527c5e01
parent 330 447b203edc2e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/libc/libc_uClibc.in	Thu Apr 17 20:26:25 2008 +0000
     1.3 @@ -0,0 +1,101 @@
     1.4 +# uClibc options
     1.5 +
     1.6 +choice
     1.7 +    bool
     1.8 +    prompt "uClibc version"
     1.9 +
    1.10 +config LIBC_V_snapshot
    1.11 +    bool
    1.12 +    prompt "latest snapshot"
    1.13 +
    1.14 +config LIBC_V_specific_date
    1.15 +    bool
    1.16 +    prompt "<specific date>"
    1.17 +
    1.18 +config LIBC_V_0_9_28
    1.19 +    bool
    1.20 +    prompt "0.9.28 (OBSOLETE)"
    1.21 +    depends on OBSOLETE
    1.22 +
    1.23 +config LIBC_V_0_9_28_1
    1.24 +    bool
    1.25 +    prompt "0.9.28.1 (OBSOLETE)"
    1.26 +    depends on OBSOLETE
    1.27 +
    1.28 +config LIBC_V_0_9_28_2
    1.29 +    bool
    1.30 +    prompt "0.9.28.2 (OBSOLETE)"
    1.31 +    depends on OBSOLETE
    1.32 +
    1.33 +config LIBC_V_0_9_28_3
    1.34 +    bool
    1.35 +    prompt "0.9.28.3"
    1.36 +
    1.37 +config LIBC_V_0_9_29
    1.38 +    bool
    1.39 +    prompt "0.9.29"
    1.40 +
    1.41 +# CT_INSERT_VERSION_ABOVE
    1.42 +# Don't remove above line!
    1.43 +endchoice
    1.44 +
    1.45 +config LIBC_VERSION
    1.46 +    string
    1.47 +    prompt "Enter date (YYYYMMDD)" if LIBC_V_specific_date
    1.48 +    default "snapshot" if LIBC_V_snapshot
    1.49 +    default "0.9.28" if LIBC_V_0_9_28
    1.50 +    default "0.9.28.1" if LIBC_V_0_9_28_1
    1.51 +    default "0.9.28.2" if LIBC_V_0_9_28_2
    1.52 +    default "0.9.28.3" if LIBC_V_0_9_28_3
    1.53 +    default "0.9.29" if LIBC_V_0_9_29
    1.54 +# CT_INSERT_VERSION_STRING_ABOVE
    1.55 +# Don't remove above line!
    1.56 +    help
    1.57 +      Enter the date of the snapshot you want to use in the form: YYYYMMDD
    1.58 +      where YYYY is the 4-digit year, MM the 2-digit month and DD the 2-digit
    1.59 +      day in the month.
    1.60 +      
    1.61 +      Please note that uClibc site removes snapshots older than a month.
    1.62 +
    1.63 +choice
    1.64 +    bool
    1.65 +    prompt "Debug level"
    1.66 +    default LIBC_UCLIBC_DEBUG_LEVEL_0
    1.67 +
    1.68 +config LIBC_UCLIBC_DEBUG_LEVEL_0
    1.69 +    bool
    1.70 +    prompt "none"
    1.71 +
    1.72 +config LIBC_UCLIBC_DEBUG_LEVEL_1
    1.73 +    bool
    1.74 +    prompt "minimal"
    1.75 +
    1.76 +config LIBC_UCLIBC_DEBUG_LEVEL_2
    1.77 +    bool
    1.78 +    prompt "all"
    1.79 +
    1.80 +endchoice
    1.81 +
    1.82 +config LIBC_UCLIBC_DEBUG_LEVEL
    1.83 +    int
    1.84 +    default 0 if LIBC_UCLIBC_DEBUG_LEVEL_0
    1.85 +    default 1 if LIBC_UCLIBC_DEBUG_LEVEL_1
    1.86 +    default 2 if LIBC_UCLIBC_DEBUG_LEVEL_2
    1.87 +
    1.88 +config LIBC_UCLIBC_CONFIG_FILE
    1.89 +    string
    1.90 +    prompt "Configuration file"
    1.91 +    default ""
    1.92 +    help
    1.93 +      Path to the configuration file.
    1.94 +      
    1.95 +      You _must_ provide one (for now).
    1.96 +
    1.97 +config LIBC_UCLIBC_LOCALES
    1.98 +    bool
    1.99 +    prompt "Add support for locales"
   1.100 +    default n
   1.101 +    help
   1.102 +      Say y if you want uClibc to support localisation.
   1.103 +
   1.104 +      Note that seems to be broken on recent uClibc releases.