This is an automated email from Gerrit. Kamal Dasu ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/936
-- gerrit commit 32fa612e485b067b79f254581585a97454dd3245 Author: Kamal Dasu <[email protected]> Date: Wed Oct 17 12:12:42 2012 -0400 mips_ejtag: Adding EJTAG 4.x and 5.x as valid versions This is a minor change to log EJTAG version 4.x and 5.x as valid versions when debug log is enabled. Change-Id: Ie20458d033c6d22842cb4a31b56765d4ba2ff123 Signed-off-by: Kamal Dasu <[email protected]> diff --git a/src/target/mips_ejtag.c b/src/target/mips_ejtag.c index 9114f8c..89997f2 100644 --- a/src/target/mips_ejtag.c +++ b/src/target/mips_ejtag.c @@ -314,6 +314,12 @@ int mips_ejtag_init(struct mips_ejtag *ejtag_info) case 3: LOG_DEBUG("EJTAG: Version 3.1 Detected"); break; + case 4: + LOG_DEBUG("EJTAG: Version 4.1 Detected"); + break; + case 5: + LOG_DEBUG("EJTAG: Version 5.1 Detected"); + break; default: LOG_DEBUG("EJTAG: Unknown Version Detected"); break; -- ------------------------------------------------------------------------------ WINDOWS 8 is here. Millions of people. Your app in 30 days. Visit The Windows 8 Center at Sourceforge for all your go to resources. http://windows8center.sourceforge.net/ join-generation-app-and-make-money-coding-fast/ _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
