summaryrefslogtreecommitdiff
path: root/maintainer/kconfig-choice.template
blob: 6f03707bea2bd9d21a2cea20d3118b11ad5eb220 (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
#
# DO NOT EDIT! This file is automatically generated.
#

choice GEN_CHOICE_@@dir|@@
    bool "@@label@@"

#!foreach choice
config @@dir|@@_@@choice|@@
    bool "@@choice@@"
#!foreach dependency
    @@depline@@
#!end-foreach
#!if [ -n "@@*help@@" ]
    help
#!end-if
#!foreach help
      @@helpline@@
#!end-foreach
    
#!end-foreach
endchoice

config @@dir|@@
    string
#!foreach choice
    default "@@choice@@" if @@dir|@@_@@choice|@@
#!end-foreach

config @@dir|@@_CHOICE_KSYM
    string
#!foreach choice
    default "@@choice|@@" if @@dir|@@_@@choice|@@
#!end-foreach

#!foreach choice
config @@dir|@@_@@choice|@@_SHOW
    bool
    default y if @@dir|@@_@@choice|@@

if @@dir|@@_@@choice|@@_SHOW
comment "Options for @@choice@@"
config @@dir|@@_@@choice|@@_PKG_KSYM
    string
    default "@@pkg|@@"

#!if [ -n "@@pkg@@" ]
source "config/versions/@@pkg@@.in"
#!end-if
source "config/@@dir@@/@@choice@@.in"
endif

#!end-foreach

config ALL_@@dir|@@_CHOICES
    string
    default "@@*choice|@@"