summaryrefslogtreecommitdiffstats
path: root/commands/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-04-27 08:44:57 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-04-28 16:43:15 +0200
commit5c32248bec360005b8a1b6cf0a967da08d3cf34e (patch)
treec16266c2f0dcfbf3a34b97f22e5e397b0cf918c4 /commands/Kconfig
parent469950f3dbf8358a17965c8168e4f0d8dd29fec9 (diff)
downloadbarebox-5c32248bec360005b8a1b6cf0a967da08d3cf34e.tar.gz
barebox-5c32248bec360005b8a1b6cf0a967da08d3cf34e.tar.xz
Kconfig: Make GLOBALVAR visible
Currently global environment variables are only enabled when the "global" command is enabled. In fact, they could be used even with the "global" command disabled, so make the GLOBALVAR option visible. While at it, add a help text for this option. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/Kconfig')
-rw-r--r--commands/Kconfig5
1 files changed, 2 insertions, 3 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index 875c5f4f01..39a2df535f 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -348,7 +348,7 @@ config CMD_BOOTM
select UIMAGE
select UNCOMPRESS
select FILETYPE
- select GLOBALVAR
+ depends on GLOBALVAR
prompt "bootm"
help
Boot an application image
@@ -741,13 +741,12 @@ config CMD_EXPORT
config CMD_DEFAULTENV
tristate
- select ENV_HANDLING
prompt "defaultenv"
help
restore environment from default environment
config CMD_GLOBAL
- select GLOBALVAR
+ depends on GLOBALVAR
tristate
prompt "global"
help