config_cmd_default.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #ifndef _CONFIG_CMD_DEFAULT_H
  9. #define _CONFIG_CMD_DEFAULT_H
  10. /*
  11. * Alphabetical list of all commands that are configured by default.
  12. * This is essentially all commands minus those that are considered
  13. * "non-standard" for some reason (memory hogs, requires special
  14. * hardware, not fully tested, etc.).
  15. */
  16. #define CONFIG_CMD_BDI /* bdinfo */
  17. #define CONFIG_CMD_BOOTD /* bootd */
  18. #define CONFIG_CMD_CONSOLE /* coninfo */
  19. #define CONFIG_CMD_ECHO /* echo arguments */
  20. #define CONFIG_CMD_EDITENV /* editenv */
  21. #define CONFIG_CMD_FPGA /* FPGA configuration Support */
  22. #define CONFIG_CMD_IMI /* iminfo */
  23. #define CONFIG_CMD_ITEST /* Integer (and string) test */
  24. #ifndef CONFIG_SYS_NO_FLASH
  25. #define CONFIG_CMD_FLASH /* flinfo, erase, protect */
  26. #define CONFIG_CMD_IMLS /* List all found images */
  27. #endif
  28. #define CONFIG_CMD_LOADB /* loadb */
  29. #define CONFIG_CMD_LOADS /* loads */
  30. #define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop */
  31. #define CONFIG_CMD_MEMTEST /* mtest */
  32. #define CONFIG_CMD_MISC /* Misc functions like sleep etc*/
  33. #define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
  34. #define CONFIG_CMD_NFS /* NFS support */
  35. #define CONFIG_CMD_RUN /* run command in env variable */
  36. #define CONFIG_CMD_SAVEENV /* saveenv */
  37. #define CONFIG_CMD_SETGETDCR /* DCR support on 4xx */
  38. #define CONFIG_CMD_SOURCE /* "source" command support */
  39. #define CONFIG_CMD_XIMG /* Load part of Multi Image */
  40. #endif /* _CONFIG_CMD_DEFAULT_H */