Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 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 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 19 | #define CONFIG_CMD_BDI /* bdinfo */ |
Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 20 | #define CONFIG_CMD_BOOTD /* bootd */ |
| 21 | #define CONFIG_CMD_CONSOLE /* coninfo */ |
| 22 | #define CONFIG_CMD_ECHO /* echo arguments */ |
Peter Tyser | 246c692 | 2009-10-25 15:12:56 -0500 | [diff] [blame] | 23 | #define CONFIG_CMD_EDITENV /* editenv */ |
Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 24 | #define CONFIG_CMD_FPGA /* FPGA configuration Support */ |
| 25 | #define CONFIG_CMD_IMI /* iminfo */ |
Prafulla Wadaskar | 18e067d | 2009-07-16 20:57:59 +0530 | [diff] [blame] | 26 | #define CONFIG_CMD_ITEST /* Integer (and string) test */ |
Valeriy Glushkov | 8b0592b | 2009-01-23 20:02:17 +0200 | [diff] [blame] | 27 | #ifndef CONFIG_SYS_NO_FLASH |
Prafulla Wadaskar | 18e067d | 2009-07-16 20:57:59 +0530 | [diff] [blame] | 28 | #define CONFIG_CMD_FLASH /* flinfo, erase, protect */ |
Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 29 | #define CONFIG_CMD_IMLS /* List all found images */ |
Valeriy Glushkov | 8b0592b | 2009-01-23 20:02:17 +0200 | [diff] [blame] | 30 | #endif |
Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 31 | #define CONFIG_CMD_LOADB /* loadb */ |
| 32 | #define CONFIG_CMD_LOADS /* loads */ |
| 33 | #define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop mtest */ |
| 34 | #define CONFIG_CMD_MISC /* Misc functions like sleep etc*/ |
| 35 | #define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ |
| 36 | #define CONFIG_CMD_NFS /* NFS support */ |
| 37 | #define CONFIG_CMD_RUN /* run command in env variable */ |
Prafulla Wadaskar | 18e067d | 2009-07-16 20:57:59 +0530 | [diff] [blame] | 38 | #define CONFIG_CMD_SAVEENV /* saveenv */ |
Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 39 | #define CONFIG_CMD_SETGETDCR /* DCR support on 4xx */ |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 40 | #define CONFIG_CMD_SOURCE /* "source" command support */ |
Jon Loeliger | ec63b10 | 2007-06-11 19:01:34 -0500 | [diff] [blame] | 41 | #define CONFIG_CMD_XIMG /* Load part of Multi Image */ |
| 42 | |
| 43 | #endif /* _CONFIG_CMD_DEFAULT_H */ |