summaryrefslogtreecommitdiff
path: root/config/debug/strace.in
blob: 2fb789da61016e29e4d6ea9d0ff3eb00e8c48947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# strace

menuconfig STRACE
    bool
    prompt "strace"
    default n

if STRACE

choice
    bool
    prompt "strace version"

config STRACE_V_4_5
    bool
    prompt "4.5"
    depends on OBSOLETE

config STRACE_V_4_5_1
    bool
    prompt "4.5.1"
    depends on OBSOLETE

config STRACE_V_4_5_2
    bool
    prompt "4.5.2"
    depends on OBSOLETE

config STRACE_V_4_5_3
    bool
    prompt "4.5.3"
    depends on OBSOLETE

config STRACE_V_4_5_4
    bool
    prompt "4.5.4"
    depends on OBSOLETE

config STRACE_V_4_5_5
    bool
    prompt "4.5.5"
    depends on OBSOLETE

config STRACE_V_4_5_6
    bool
    prompt "4.5.6"
    depends on OBSOLETE

config STRACE_V_4_5_7
    bool
    prompt "4.5.7"
    depends on OBSOLETE

config STRACE_V_4_5_8
    bool
    prompt "4.5.8"
    depends on OBSOLETE

config STRACE_V_4_5_9
    bool
    prompt "4.5.9"
    depends on OBSOLETE

config STRACE_V_4_5_10
    bool
    prompt "4.5.10"
    depends on OBSOLETE

config STRACE_V_4_5_11
    bool
    prompt "4.5.11"
    depends on OBSOLETE

config STRACE_V_4_5_12
    bool
    prompt "4.5.12"
    depends on OBSOLETE

config STRACE_V_4_5_13
    bool
    prompt "4.5.13"
    depends on OBSOLETE

config STRACE_V_4_5_14
    bool
    prompt "4.5.14"
    depends on OBSOLETE

config STRACE_V_4_5_15
    bool
    prompt "4.5.15"

# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
endchoice

config STRACE_VERSION
    string
    default "4.5" if STRACE_V_4_5
    default "4.5.1" if STRACE_V_4_5_1
    default "4.5.2" if STRACE_V_4_5_2
    default "4.5.3" if STRACE_V_4_5_3
    default "4.5.4" if STRACE_V_4_5_4
    default "4.5.5" if STRACE_V_4_5_5
    default "4.5.6" if STRACE_V_4_5_6
    default "4.5.7" if STRACE_V_4_5_7
    default "4.5.8" if STRACE_V_4_5_8
    default "4.5.9" if STRACE_V_4_5_9
    default "4.5.10" if STRACE_V_4_5_10
    default "4.5.11" if STRACE_V_4_5_11
    default "4.5.12" if STRACE_V_4_5_12
    default "4.5.13" if STRACE_V_4_5_13
    default "4.5.14" if STRACE_V_4_5_14
    default "4.5.15" if STRACE_V_4_5_15
# CT_INSERT_VERSION_STRING_ABOVE
# # Don't remove above line!

endif