mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-30 10:11:45 +02:00
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>
18 lines
339 B
C
18 lines
339 B
C
/*
|
|
* config_cmd_defaults.h - sane defaults for everyone
|
|
*
|
|
* Copyright (c) 2010-2011 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#ifndef _CONFIG_CMD_DEFAULTS_H_
|
|
#define _CONFIG_CMD_DEFAULTS_H_
|
|
|
|
#define CONFIG_CMD_CRC32 1
|
|
#define CONFIG_CMD_EXPORTENV 1
|
|
#define CONFIG_CMD_GO 1
|
|
#define CONFIG_CMD_IMPORTENV 1
|
|
|
|
#endif
|