summaryrefslogtreecommitdiff
path: root/maintainer/kconfig-choice.template
blob: ec66f742e9af0153b6090d8610d8c36675595db2 (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
#
# 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

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

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