config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 14 18:09:36 2008 +0000 (2008-09-14)
changeset 852 c17bb66e2aa5
parent 428 022ca36f85c8
child 916 68af6b83ff7e
permissions -rw-r--r--
Enhance setting the minimum kernel version glibc will run against.
Ideally, eglibc should also benefit for that, but the current code does not set it.

/trunk/scripts/build/libc/glibc.sh | 38 33 5 0 +++++++++++++++---
/trunk/config/libc/glibc.in | 4 2 2 0 +-
/trunk/config/libc/uClibc.in | 2 2 0 0 +
/trunk/config/libc/eglibc.in | 4 2 2 0 +-
/trunk/config/libc/glibc-eglibc-common.in | 80 68 12 0 +++++++++++++++++++++++++++++++------
/trunk/config/libc.in | 69 38 31 0 ++++++++++++++++++--------------
6 files changed, 145 insertions(+), 52 deletions(-)
     1 # strace
     2 
     3 menuconfig STRACE
     4     bool
     5     prompt "strace"
     6     default n
     7     depends on ! BARE_METAL
     8 
     9 if STRACE
    10 
    11 choice
    12     bool
    13     prompt "strace version"
    14 
    15 config STRACE_V_4_5
    16     bool
    17     prompt "4.5 (OBSOLETE)"
    18     depends on OBSOLETE
    19 
    20 config STRACE_V_4_5_14
    21     bool
    22     prompt "4.5.14 (OBSOLETE)"
    23     depends on OBSOLETE
    24 
    25 config STRACE_V_4_5_15
    26     bool
    27     prompt "4.5.15"
    28 
    29 config STRACE_V_4_5_16
    30     bool
    31     prompt "4.5.16"
    32 
    33 # CT_INSERT_VERSION_ABOVE
    34 # Don't remove above line!
    35 endchoice
    36 
    37 config STRACE_VERSION
    38     string
    39     default "4.5" if STRACE_V_4_5
    40     default "4.5.14" if STRACE_V_4_5_14
    41     default "4.5.15" if STRACE_V_4_5_15
    42     default "4.5.16" if STRACE_V_4_5_16
    43 # CT_INSERT_VERSION_STRING_ABOVE
    44 # # Don't remove above line!
    45 
    46 endif