summaryrefslogtreecommitdiff
path: root/maintainer/kconfig-choice.template
blob: b2ca2176473f6b5716a9c5125e271f239922f40d (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
#
# 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
    help
#!foreach help
      @@helpline@@
#!end-foreach
    
#!end-foreach
endchoice

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

#!foreach choice
if @@dir|@@_@@choice|@@
source "config/@@dir@@/@@choice@@.in"
endif
#!end-foreach