blob: e79a13be8bafcd68983435504d07a3d9d0fe261a [file] [log] [blame]
Jon Loeligerec63b102007-06-11 19:01:34 -05001/*
2 * Copyright 2007 Freescale Semiconductor, Inc.
3 *
4 * This file is licensed under the terms of the GNU General Public
5 * License Version 2. This file is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
8
9#ifndef _CONFIG_CMD_DEFAULT_H
10#define _CONFIG_CMD_DEFAULT_H
11
12/*
13 * Alphabetical list of all commands that are configured by default.
14 * This is essentially all commands minus those that are considered
15 * "non-standard" for some reason (memory hogs, requires special
16 * hardware, not fully tested, etc.).
17 */
18
Wolfgang Denk53677ef2008-05-20 16:00:29 +020019#define CONFIG_CMD_BDI /* bdinfo */
Jon Loeligerec63b102007-06-11 19:01:34 -050020#define CONFIG_CMD_BOOTD /* bootd */
21#define CONFIG_CMD_CONSOLE /* coninfo */
22#define CONFIG_CMD_ECHO /* echo arguments */
Peter Tyser246c6922009-10-25 15:12:56 -050023#define CONFIG_CMD_EDITENV /* editenv */
Sjoerd Simons293eac32015-02-25 23:23:51 +010024#define CONFIG_CMD_ENV_EXISTS /* query whether env variables exists */
Jon Loeligerec63b102007-06-11 19:01:34 -050025#define CONFIG_CMD_FPGA /* FPGA configuration Support */
26#define CONFIG_CMD_IMI /* iminfo */
Prafulla Wadaskar18e067d2009-07-16 20:57:59 +053027#define CONFIG_CMD_ITEST /* Integer (and string) test */
Valeriy Glushkov8b0592b2009-01-23 20:02:17 +020028#ifndef CONFIG_SYS_NO_FLASH
Prafulla Wadaskar18e067d2009-07-16 20:57:59 +053029#define CONFIG_CMD_FLASH /* flinfo, erase, protect */
Jon Loeligerec63b102007-06-11 19:01:34 -050030#define CONFIG_CMD_IMLS /* List all found images */
Valeriy Glushkov8b0592b2009-01-23 20:02:17 +020031#endif
Jon Loeligerec63b102007-06-11 19:01:34 -050032#define CONFIG_CMD_LOADB /* loadb */
33#define CONFIG_CMD_LOADS /* loads */
Wolfgang Denka2681702013-03-08 10:51:32 +000034#define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop */
Jon Loeligerec63b102007-06-11 19:01:34 -050035#define CONFIG_CMD_MISC /* Misc functions like sleep etc*/
36#define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
37#define CONFIG_CMD_NFS /* NFS support */
38#define CONFIG_CMD_RUN /* run command in env variable */
Prafulla Wadaskar18e067d2009-07-16 20:57:59 +053039#define CONFIG_CMD_SAVEENV /* saveenv */
Jon Loeligerec63b102007-06-11 19:01:34 -050040#define CONFIG_CMD_SETGETDCR /* DCR support on 4xx */
Wolfgang Denk74de7ae2009-04-01 23:34:12 +020041#define CONFIG_CMD_SOURCE /* "source" command support */
Jon Loeligerec63b102007-06-11 19:01:34 -050042#define CONFIG_CMD_XIMG /* Load part of Multi Image */
43
44#endif /* _CONFIG_CMD_DEFAULT_H */