crosstool-ng/maintainer/kconfig-choice.template
Alexey Neyman 63e91f4eba A few fixes for showSamples
- Use fork's name, not the master package name
- Allow to use a choice selector when printing a package
- Consider complibs always present (they are, gcc does require gmp/...)

Signed-off-by: Alexey Neyman <stilor@att.net>
2017-11-19 21:50:28 -08:00

39 lines
633 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|@@_KSYM
string
#!foreach choice
default "@@choice|@@" if @@dir|@@_@@choice|@@
#!end-foreach
#!foreach choice
if @@dir|@@_@@choice|@@
source "config/@@dir@@/@@choice@@.in"
endif
#!end-foreach