summaryrefslogtreecommitdiff
path: root/maintainer/kconfig-choice.template
blob: 12ea12ca03f60a49050b7e2b6dca47b80e47b71e (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_@@prefix@@
    bool "@@label@@"

#!foreach choice
config @@prefix@@_@@kcfg_choice@@
    bool "@@choice@@"
#!foreach dependency
    @@depline@@
#!end-foreach
    help
#!foreach help
      @@helpline@@
#!end-foreach
    
#!end-foreach
endchoice

config @@prefix@@
    string
#!foreach choice
    default "@@choice@@" if @@prefix@@_@@kcfg_choice@@
#!end-foreach

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