summaryrefslogtreecommitdiff
path: root/include/configs/delta.h
diff options
context:
space:
mode:
authorMarkus Klotzbuecher <mk@denx.de>2006-05-22 16:33:54 +0200
committerMarkus Klotzbuecher <mk@pollux.denx.de>2006-05-22 16:33:54 +0200
commit3e326ece9eba8184f5d48aa4fb87760a8f6f0f10 (patch)
tree5ffbaa50f1627682082592c148faa34d59e29e0c /include/configs/delta.h
parent5770a1e488621a9e7e344afed7c921ff4e715a63 (diff)
This patch adds USB storage support for the delta board. This is the first
board to make use of a generic OHCI driver, that calls hooks for board dependant initialization.
Diffstat (limited to 'include/configs/delta.h')
-rw-r--r--include/configs/delta.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/configs/delta.h b/include/configs/delta.h
index 91284fdac..0423bcbdb 100644
--- a/include/configs/delta.h
+++ b/include/configs/delta.h
@@ -94,13 +94,22 @@
# define CONFIG_COMMANDS ((CONFIG_CMD_DFL \
| CFG_CMD_ENV \
| CFG_CMD_NAND \
- | CFG_CMD_I2C) \
+ | CFG_CMD_I2C \
+ | CFG_CMD_USB \
+ | CFG_CMD_FAT) \
& ~(CFG_CMD_NET \
| CFG_CMD_FLASH \
| CFG_CMD_IMLS))
#endif
+#define CONFIG_USB_OHCI 1
+#define CONFIG_USB_STORAGE 1
+#define CONFIG_DOS_PARTITION 1
+
+#define LITTLEENDIAN 1 /* used by usb_ohci.c */
+
+
/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
#include <cmd_confdefs.h>