config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 29 20:24:50 2010 +0200 (2010-03-29)
changeset 1870 a4c4e51aa541
parent 1785 05490fb72d5d
child 2006 f15068f8ae3b
permissions -rw-r--r--
config: fix style issues when source-ing files

Always enclose the sourced file between double-quotes (purely for
consistency; enclosing or not are both allowed by the kconfig language).
     1 # strace
     2 # depends on ! BACKEND
     3 
     4 config DEBUG_strace
     5 
     6 choice
     7     bool
     8     prompt "strace version"
     9 # Don't remove next line
    10 # CT_INSERT_VERSION_BELOW
    11 
    12 config STRACE_V_4_5_19
    13     bool
    14     prompt "4.5.19"
    15 
    16 config STRACE_V_4_5_18
    17     bool
    18     prompt "4.5.18"
    19 
    20 config STRACE_V_4_5_17
    21     bool
    22     prompt "4.5.17 (OBSOLETE)"
    23     depends on OBSOLETE
    24 
    25 config STRACE_V_4_5_16
    26     bool
    27     prompt "4.5.16 (OBSOLETE)"
    28     depends on OBSOLETE
    29 
    30 config STRACE_V_4_5_15
    31     bool
    32     prompt "4.5.15 (OBSOLETE)"
    33     depends on OBSOLETE
    34 
    35 endchoice
    36 
    37 config STRACE_VERSION
    38     string
    39 # Don't remove next line
    40 # CT_INSERT_VERSION_STRING_BELOW
    41     default "4.5.19" if STRACE_V_4_5_19
    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