diff options
Diffstat (limited to 'maintainer/kconfig-choice.template')
-rw-r--r-- | maintainer/kconfig-choice.template | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/maintainer/kconfig-choice.template b/maintainer/kconfig-choice.template index affaf65d..bd0c4744 100644 --- a/maintainer/kconfig-choice.template +++ b/maintainer/kconfig-choice.template @@ -32,7 +32,12 @@ config @@dir|@@_CHOICE_KSYM #!end-foreach #!foreach choice -if @@dir|@@_@@choice|@@ +config @@dir|@@_@@choice|@@_SHOW + bool + default y if @@dir|@@_@@choice|@@ + +if @@dir|@@_@@choice|@@_SHOW +comment "Options for @@choice@@" config @@dir|@@_@@choice|@@_PKG_KSYM string default "@@pkg|@@" @@ -44,3 +49,7 @@ source "config/@@dir@@/@@choice@@.in" endif #!end-foreach + +config ALL_@@dir|@@_CHOICES + string + default "@@*choice|@@" |