Skip to content

Commit 1d5c201

Browse files
masahir0ytrini
authored andcommitted
kconfig: move CONFIG_CMD_IMPORTENV to Kconfig
Since CONFIG_CMD_IMPORTENV is defined in config_cmd_defaults.h, it should be enabled for all the boards except bf506f-ezkit that undefs it explicitely. Signed-off-by: Masahiro Yamada <[email protected]> Acked-by: Simon Glass <[email protected]> Tested-by: Simon Glass <[email protected]>
1 parent 726ac8e commit 1d5c201

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

common/Kconfig

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ config CMD_EXPORTENV
1919
help
2020
Export environments.
2121

22+
config CMD_IMPORTENV
23+
bool "Enable env import command"
24+
default y
25+
help
26+
Import environments.
27+
2228
config CMD_GO
2329
bool "Enable go command"
2430
default y

configs/bf506f-ezkit_defconfig

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ CONFIG_BLACKFIN=y
22
CONFIG_TARGET_BF506F_EZKIT=y
33
# CONFIG_CMD_BOOTM is not set
44
# CONFIG_CMD_EXPORTENV is not set
5+
# CONFIG_CMD_IMPORTENV is not set

include/config_cmd_defaults.h

-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@
99
#ifndef _CONFIG_CMD_DEFAULTS_H_
1010
#define _CONFIG_CMD_DEFAULTS_H_
1111

12-
#define CONFIG_CMD_IMPORTENV 1
1312

1413
#endif

include/configs/bf506f-ezkit.h

-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
*/
8686
#define CONFIG_ENV_IS_NOWHERE
8787
#define CONFIG_ENV_SIZE 0x400
88-
#undef CONFIG_CMD_IMPORTENV
8988

9089

9190
/*

include/configs/h2200.h

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
#define CONFIG_BAUDRATE 115200
117117
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 38400, 115200 }
118118

119-
#define CONFIG_CMD_IMPORTENV 1
120119
#define CONFIG_CMD_LOADB
121120
#define CONFIG_CMD_SOURCE
122121
#define CONFIG_CMD_RUN

0 commit comments

Comments
 (0)