config/libc_uClibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 01 16:49:15 2007 +0000 (2007-05-01)
changeset 56 07a6a48962b7
parent 22 3b50052c0586
child 60 6c5af708d80e
permissions -rw-r--r--
Merge patches sent by Robert P. J. Day <rpjday@mindspring.com>.
Warning: the buildroot folks purposedly removed the skip-comment patch but didn't really said why. Keeping it for the sake of having it in svn just in case (removing it will be easier thant not having it at all).
     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_26
    16     bool
    17     prompt "0.9.26"
    18 
    19 config LIBC_V_0_9_27
    20     bool
    21     prompt "0.9.27"
    22 
    23 config LIBC_V_0_9_28
    24     bool
    25     prompt "0.9.28"
    26 
    27 config LIBC_V_0_9_28_1
    28     bool
    29     prompt "0.9.28.1"
    30 
    31 config LIBC_V_0_9_28_2
    32     bool
    33     prompt "0.9.28.2"
    34 
    35 config LIBC_V_0_9_28_3
    36     bool
    37     prompt "0.9.28.3"
    38 
    39 config LIBC_V_0_9_29_rc1
    40     bool
    41     prompt "0.9.29_rc1"
    42 
    43 # CT_INSERT_VERSION_ABOVE
    44 # Don't remove above line!
    45 endchoice
    46 
    47 config LIBC_VERSION
    48     string
    49     prompt "Enter date (YYYYMMDD)" if LIBC_V_specific_date
    50     default "snapshot" if LIBC_V_snapshot
    51     default "0.9.26" if LIBC_V_0_9_26
    52     default "0.9.27" if LIBC_V_0_9_27
    53     default "0.9.28" if LIBC_V_0_9_28
    54     default "0.9.28.1" if LIBC_V_0_9_28_1
    55     default "0.9.28.2" if LIBC_V_0_9_28_2
    56     default "0.9.28.3" if LIBC_V_0_9_28_3
    57     default "0.9.29_rc1" if LIBC_V_0_9_29_rc1
    58 # CT_INSERT_VERSION_STRING_ABOVE
    59 # Don't remove above line!
    60 
    61 choice
    62     bool
    63     prompt "Debug level"
    64     default LIBC_UCLIBC_DEBUG_LEVEL_0
    65 
    66 config LIBC_UCLIBC_DEBUG_LEVEL_0
    67     bool
    68     prompt "none"
    69 
    70 config LIBC_UCLIBC_DEBUG_LEVEL_1
    71     bool
    72     prompt "minimal"
    73 
    74 config LIBC_UCLIBC_DEBUG_LEVEL_2
    75     bool
    76     prompt "all"
    77 
    78 endchoice
    79 
    80 config LIBC_UCLIBC_DEBUG_LEVEL
    81     int
    82     default 0 if LIBC_UCLIBC_DEBUG_LEVEL_0
    83     default 1 if LIBC_UCLIBC_DEBUG_LEVEL_1
    84     default 2 if LIBC_UCLIBC_DEBUG_LEVEL_2
    85 
    86 config LIBC_UCLIBC_CONFIG_FILE
    87     string
    88     prompt "Configuration file"
    89     default ""
    90     help
    91       Path to the configuration file.
    92       
    93       You _must_ provide one (for now).
    94 
    95 config LIBC_UCLIBC_LOCALES
    96     bool
    97     prompt "Add support for locales"
    98     default n
    99     help
   100       Say y if you want uClibc to support localisation.
   101 
   102       Note that seems to be broken on recent uClibc releases.