diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-16 16:33:03 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-09-24 18:30:28 -0400 |
commit | 726ac8e4c505f086c1decd5263068373254ee60a (patch) | |
tree | 19ba416e290775bcca39789478997909f9319f4d | |
parent | cccee18918a9bcc1b34ddcd33f219a4ed26fc690 (diff) | |
download | u-boot-726ac8e4c505f086c1decd5263068373254ee60a.tar.gz u-boot-726ac8e4c505f086c1decd5263068373254ee60a.tar.bz2 u-boot-726ac8e4c505f086c1decd5263068373254ee60a.zip |
kconfig: move CONFIG_CMD_GO to Kconfig
Since CONFIG_CMD_GO is defined in config_cmd_defaults.h
(and no board undefs it its own header), it can be moved to
Kconfig with the default value "y".
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | common/Kconfig | 6 | ||||
-rw-r--r-- | include/config_cmd_defaults.h | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index f628315dbd..7875e5e2e2 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -19,4 +19,10 @@ config CMD_EXPORTENV help Export environments. +config CMD_GO + bool "Enable go command" + default y + help + Start an application at a given address. + endmenu diff --git a/include/config_cmd_defaults.h b/include/config_cmd_defaults.h index 5761d7c3fd..0ef63eee14 100644 --- a/include/config_cmd_defaults.h +++ b/include/config_cmd_defaults.h @@ -9,7 +9,6 @@ #ifndef _CONFIG_CMD_DEFAULTS_H_ #define _CONFIG_CMD_DEFAULTS_H_ -#define CONFIG_CMD_GO 1 #define CONFIG_CMD_IMPORTENV 1 #endif |