CONFIG_CMD_BOOTM is defined in config_cmd_defaults.h which is forcebly included from each board. So, the default value of "config CMD_BOOTM" should be "y". For some boards undefining it (bf506f-ezkit, controlcenterd_TRAILBLA, controlcenterd_TRAILBLAZER_DEVELOP, controlcenterd_TRAILBLAZER), "# CONFIG_CMD_BOOTM is not set" should be added to their defconfig. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>master
parent
b0928da648
commit
dba1697057
@ -1,4 +1,10 @@ |
||||
menu "Command line interface" |
||||
depends on !SPL_BUILD |
||||
|
||||
config CMD_BOOTM |
||||
bool "Enable bootm command" |
||||
default y |
||||
help |
||||
Boot an application image from the memory. |
||||
|
||||
endmenu |
||||
|
@ -1,2 +1,3 @@ |
||||
CONFIG_BLACKFIN=y |
||||
CONFIG_TARGET_BF506F_EZKIT=y |
||||
# CONFIG_CMD_BOOTM is not set |
||||
|
Loading…
Reference in new issue