diff options
| author | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 | 
| commit | 71f9511803de65a3b98d2f592d418da1d1539f13 (patch) | |
| tree | 4be38a22fc4f588a80aa8cc350ecd5617a211389 /include/cmd_confdefs.h | |
| parent | 487778b781257831aa9b9140dd3c7ad4176e8314 (diff) | |
| download | olio-uboot-2014.01-71f9511803de65a3b98d2f592d418da1d1539f13.tar.xz olio-uboot-2014.01-71f9511803de65a3b98d2f592d418da1d1539f13.zip | |
* Fix CONFIG_NET_MULTI support in include/net.hLABEL_2003_06_16_0055
* Patches by Kyle Harris, 13 Mar 2003:
  - Add FAT partition support
  - Add command support for FAT
  - Add command support for MMC
  ----
  - Add Intel PXA support for video
  - Add Intel PXA support for MMC
  ----
  - Enable MMC and FAT for lubbock board
  - Other misc changes for lubbock board
Diffstat (limited to 'include/cmd_confdefs.h')
| -rw-r--r-- | include/cmd_confdefs.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/include/cmd_confdefs.h b/include/cmd_confdefs.h index 7ab553d31..2d9b5a554 100644 --- a/include/cmd_confdefs.h +++ b/include/cmd_confdefs.h @@ -82,6 +82,8 @@  #define CFG_CMD_BMP	0x0001000000000000	/* BMP support			*/  #define CFG_CMD_PORTIO	0x0002000000000000	/* Port I/O		        */  #define CFG_CMD_PING	0x0004000000000000	/* ping support			*/ +#define CFG_CMD_MMC	0x0008000000000000	/* MMC support			*/ +#define CFG_CMD_FAT	0x0010000000000000	/* FAT support			*/  #define CFG_CMD_ALL	0xFFFFFFFFFFFFFFFF	/* ALL commands			*/ @@ -102,6 +104,7 @@  			CFG_CMD_EEPROM	| \  			CFG_CMD_ELF	| \  			CFG_CMD_FDC	| \ +			CFG_CMD_FAT	| \  			CFG_CMD_FDOS	| \  			CFG_CMD_HWFLOW	| \  			CFG_CMD_I2C	| \ @@ -111,6 +114,7 @@  			CFG_CMD_JFFS2	| \  			CFG_CMD_KGDB	| \  			CFG_CMD_MII	| \ +			CFG_CMD_MMC	| \  			CFG_CMD_NAND	| \  			CFG_CMD_PCI	| \  			CFG_CMD_PCMCIA	| \ |