]>
Commit | Line | Data |
---|---|---|
ec63b10b JL |
1 | /* |
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 | ||
53677ef1 | 19 | #define CONFIG_CMD_BDI /* bdinfo */ |
ec63b10b JL |
20 | #define CONFIG_CMD_BOOTD /* bootd */ |
21 | #define CONFIG_CMD_CONSOLE /* coninfo */ | |
22 | #define CONFIG_CMD_ECHO /* echo arguments */ | |
246c6922 | 23 | #define CONFIG_CMD_EDITENV /* editenv */ |
293eac36 | 24 | #define CONFIG_CMD_ENV_EXISTS /* query whether env variables exists */ |
ec63b10b JL |
25 | #define CONFIG_CMD_FPGA /* FPGA configuration Support */ |
26 | #define CONFIG_CMD_IMI /* iminfo */ | |
18e067de | 27 | #define CONFIG_CMD_ITEST /* Integer (and string) test */ |
8b0592b8 | 28 | #ifndef CONFIG_SYS_NO_FLASH |
18e067de | 29 | #define CONFIG_CMD_FLASH /* flinfo, erase, protect */ |
ec63b10b | 30 | #define CONFIG_CMD_IMLS /* List all found images */ |
8b0592b8 | 31 | #endif |
ec63b10b JL |
32 | #define CONFIG_CMD_LOADB /* loadb */ |
33 | #define CONFIG_CMD_LOADS /* loads */ | |
a2681707 | 34 | #define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop */ |
ec63b10b JL |
35 | #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 */ | |
18e067de | 39 | #define CONFIG_CMD_SAVEENV /* saveenv */ |
ec63b10b | 40 | #define CONFIG_CMD_SETGETDCR /* DCR support on 4xx */ |
74de7aef | 41 | #define CONFIG_CMD_SOURCE /* "source" command support */ |
ec63b10b JL |
42 | #define CONFIG_CMD_XIMG /* Load part of Multi Image */ |
43 | ||
44 | #endif /* _CONFIG_CMD_DEFAULT_H */ |