summaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2013-12-08 23:21:50 +0100
committerPeter Korsgaard <peter@korsgaard.com>2013-12-08 23:30:26 +0100
commitf4ea4b9824138c7e24c9e4876ff09f14e5d48e87 (patch)
tree9fb0ba0d025639e8c70eabf30334bbb94dc793a9 /Config.in
parent2233f5f8fb40527e6d14939bb79ec24ff2325fc1 (diff)
Config.in: Add a menu around BR2_EXTERNAL configuration options
To make it clear to the user that these options are external to Buildroot and no support is provided by the Buildroot community. With this, there's no need to recommend people to their options inside a menu, so remove that from the documentation. Kconfig nicely allows us to hide the menu completely if BR2_EXTERNAL isn't used, so make use of that to not confuse people. It would be nice if we could add some help text to explain the BR2_EXTERNAL stuff as well, but that isn't supported on menus :/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index 12d36b5c8..2b401cb8a 100644
--- a/Config.in
+++ b/Config.in
@@ -493,4 +493,9 @@ source "package/Config.in.host"
source "Config.in.legacy"
+menu "User-provided options"
+ depends on BR2_EXTERNAL != "support/dummy-external"
+
source "$BR2_EXTERNAL/Config.in"
+
+endmenu