config/libc/uClibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 14 17:52:53 2008 +0000 (2008-05-14)
changeset 500 a8b11d75e253
parent 448 08da017ba46b
child 504 63967c02b881
permissions -rw-r--r--
Introduce a new option to render (or not) uClibc' build verbose.

/trunk/scripts/build/libc_uClibc.sh | 6 4 2 0 ++++--
/trunk/config/libc/uClibc.in | 23 23 0 0 +++++++++++++++++++++++
2 files changed, 27 insertions(+), 2 deletions(-)
     1 # uClibc options
     2 
     3 choice
     4     bool
     5     prompt "uClibc version"
     6 
     7 config LIBC_V_snapshot
     8     bool
     9     prompt "latest snapshot"
    10 
    11 config LIBC_V_specific_date
    12     bool
    13     prompt "<specific date>"
    14 
    15 config LIBC_V_0_9_28
    16     bool
    17     prompt "0.9.28 (OBSOLETE)"
    18     depends on OBSOLETE
    19 
    20 config LIBC_V_0_9_28_1
    21     bool
    22     prompt "0.9.28.1 (OBSOLETE)"
    23     depends on OBSOLETE
    24 
    25 config LIBC_V_0_9_28_2
    26     bool
    27     prompt "0.9.28.2 (OBSOLETE)"
    28     depends on OBSOLETE
    29 
    30 config LIBC_V_0_9_28_3
    31     bool
    32     prompt "0.9.28.3"
    33 
    34 config LIBC_V_0_9_29
    35     bool
    36     prompt "0.9.29"
    37 
    38 # CT_INSERT_VERSION_ABOVE
    39 # Don't remove above line!
    40 endchoice
    41 
    42 config LIBC_VERSION
    43     string
    44     prompt "Enter date (YYYYMMDD)" if LIBC_V_specific_date
    45     default "snapshot" if LIBC_V_snapshot
    46     default "0.9.28" if LIBC_V_0_9_28
    47     default "0.9.28.1" if LIBC_V_0_9_28_1
    48     default "0.9.28.2" if LIBC_V_0_9_28_2
    49     default "0.9.28.3" if LIBC_V_0_9_28_3
    50     default "0.9.29" if LIBC_V_0_9_29
    51 # CT_INSERT_VERSION_STRING_ABOVE
    52 # Don't remove above line!
    53     help
    54       Enter the date of the snapshot you want to use in the form: YYYYMMDD
    55       where YYYY is the 4-digit year, MM the 2-digit month and DD the 2-digit
    56       day in the month.
    57       
    58       Please note that uClibc site removes snapshots older than a month.
    59 
    60 choice
    61     bool
    62     prompt "uClibc verbosity:"
    63 
    64 config LIBC_UCLIBC_VERBOSITY_0
    65     bool
    66     prompt "Simplified"
    67     help
    68       Print simplified command lines.
    69 
    70 config LIBC_UCLIBC_VERBOSITY_1
    71     bool
    72     prompt "Full commands"
    73     help
    74       Print full command lines.
    75 
    76 endchoice
    77 
    78 config LIBC_UCLIBC_VERBOSITY
    79     string
    80     default ""      if LIBC_UCLIBC_VERBOSITY_0
    81     default "V=1"   if LIBC_UCLIBC_VERBOSITY_1
    82 
    83 choice
    84     bool
    85     prompt "Debug level"
    86     default LIBC_UCLIBC_DEBUG_LEVEL_0
    87 
    88 config LIBC_UCLIBC_DEBUG_LEVEL_0
    89     bool
    90     prompt "none"
    91 
    92 config LIBC_UCLIBC_DEBUG_LEVEL_1
    93     bool
    94     prompt "minimal"
    95 
    96 config LIBC_UCLIBC_DEBUG_LEVEL_2
    97     bool
    98     prompt "all"
    99 
   100 endchoice
   101 
   102 config LIBC_UCLIBC_DEBUG_LEVEL
   103     int
   104     default 0 if LIBC_UCLIBC_DEBUG_LEVEL_0
   105     default 1 if LIBC_UCLIBC_DEBUG_LEVEL_1
   106     default 2 if LIBC_UCLIBC_DEBUG_LEVEL_2
   107 
   108 config LIBC_UCLIBC_CONFIG_FILE
   109     string
   110     prompt "Configuration file"
   111     default ""
   112     help
   113       Path to the configuration file.
   114       
   115       You _must_ provide one (for now).
   116 
   117 config LIBC_UCLIBC_LOCALES
   118     bool
   119     prompt "Add support for locales"
   120     default n
   121     help
   122       Say y if you want uClibc to support localisation.
   123 
   124       Note that seems to be broken on recent uClibc releases.