
-----Original Message----- From: Ajay Bhargav [mailto:ajay.bhargav@einfochips.com] Sent: 25 January 2012 17:50 To: linux@bohmer.net Cc: Prafulla Wadaskar; marek.vasut@gmail.com; u-boot@lists.denx.de; Ajay Bhargav Subject: [PATCH 3/3] Armada100: gplugD: Add USB command support
This patch adds support for USB commands and USB storage device for Marvell gplugD
Signed-off-by: Ajay Bhargav ajay.bhargav@einfochips.com
include/configs/gplugd.h | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h index 9813309..f8dc74f 100644 --- a/include/configs/gplugd.h +++ b/include/configs/gplugd.h @@ -134,4 +134,21 @@ #define CONFIG_CMD_EDITENV #define CONFIG_CMD_SAVEENV
+#define CONFIG_CMD_USB
This line should be moved up where all the commands are defined (below config_cmd_default.h)
+#ifdef CONFIG_CMD_USB +#define CONFIG_USB_EHCI +#define CONFIG_USB_EHCI_ARMADA100 +#define CONFIG_EHCI_IS_TDI +#define CONFIG_USB_STORAGE
+#ifndef CONFIG_DOS_PARTITION
Does this undef needed? remove it you can.
Regards.. Prafulla . . .