crosstool-ng/maintainer/kconfig-choice.template
Alexey Neyman 9fdb93cce0 Make comp.libs use generated templates, too
This allows us to include the component-to-package relation in the
generated kconfig files and make use of that information in the
show-config.sh script.

Signed-off-by: Alexey Neyman <stilor@att.net>
2017-11-29 23:44:49 -08:00

47 lines
780 B
Plaintext

#
# 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|@@_CHOICE_KSYM
string
#!foreach choice
default "@@choice|@@" if @@dir|@@_@@choice|@@
#!end-foreach
#!foreach choice
if @@dir|@@_@@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