mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
9fdb93cce0
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>
28 lines
460 B
Plaintext
28 lines
460 B
Plaintext
#
|
|
# DO NOT EDIT! This file is automatically generated.
|
|
#
|
|
|
|
#!foreach choice
|
|
menuconfig @@dir|@@_@@choice|@@
|
|
bool "@@choice@@"
|
|
#!foreach dependency
|
|
@@depline@@
|
|
#!end-foreach
|
|
help
|
|
#!foreach help
|
|
@@helpline@@
|
|
#!end-foreach
|
|
|
|
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
|