config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 13 17:51:33 2009 +0200 (2009-09-13)
changeset 1534 d4ddf19a1968
parent 974 e298ce9ba8fe
child 1535 073d351bdcd3
permissions -rw-r--r--
config: re-order menu entries so that latest versions are at the top

It makes better sense to have latest versions at the top of the choice
entries.
     1 # strace
     2 
     3 config DEBUG_strace
     4 
     5 choice
     6     bool
     7     prompt "strace version"
     8 
     9 config STRACE_V_4_5_18
    10     bool
    11     prompt "4.5.18 (EXPERIMENTAL)"
    12     depends on EXPERIMENTAL
    13 
    14 config STRACE_V_4_5_17
    15     bool
    16     prompt "4.5.17"
    17 
    18 config STRACE_V_4_5_16
    19     bool
    20     prompt "4.5.16"
    21 
    22 config STRACE_V_4_5_15
    23     bool
    24     prompt "4.5.15"
    25 
    26 config STRACE_V_4_5_14
    27     bool
    28     prompt "4.5.14 (OBSOLETE)"
    29     depends on OBSOLETE
    30 
    31 config STRACE_V_4_5
    32     bool
    33     prompt "4.5 (OBSOLETE)"
    34     depends on OBSOLETE
    35 
    36 # CT_INSERT_VERSION_ABOVE
    37 # Don't remove above line!
    38 endchoice
    39 
    40 config STRACE_VERSION
    41     string
    42     default "4.5.18" if STRACE_V_4_5_18
    43     default "4.5.17" if STRACE_V_4_5_17
    44     default "4.5.16" if STRACE_V_4_5_16
    45     default "4.5.15" if STRACE_V_4_5_15
    46     default "4.5.14" if STRACE_V_4_5_14
    47     default "4.5" if STRACE_V_4_5
    48 # CT_INSERT_VERSION_STRING_ABOVE
    49 # # Don't remove above line!