Re: [Openocd-development] JLink woes

2011-07-10 Thread Jean-Christophe PLAGNIOL-VILLARD
On 09:30 Sun 10 Jul , Xiaofan Chen wrote: On Sun, Jul 10, 2011 at 9:11 AM, li...@neuronenwerk.de wrote: Hi list, I've been trying for some days to get the Segger JLink EDU version going with OpenOCD on Windows 7 32 bit. As the JLink, OpenOCD and LibUSB might have be the reason for

Re: [Openocd-development] OpenOCD 0.5.0-rc2 release

2011-07-10 Thread Luca Bruno
Jean-Christophe PLAGNIOL-VILLARD scrisse: Here is OpenOCD v0.5.0-rc2 This time on the official git tree The following changes since commit ff640f197a9a343b2f3ed10e9174e35282334e8c: It looks like you forgot to push the corresponding tag. I took the liberty to take this commit

[Openocd-development] [PATCH] Fix typo in command output

2011-07-10 Thread Luca Bruno
Fix a bunch of minor typo in user facing output. Signed-off-by: Luca Bruno lu...@debian.org --- src/flash/nand/lpc3180.c |2 +- src/flash/nor/stellaris.c |2 +- src/rtos/FreeRTOS.c |2 +- src/rtos/ThreadX.c|2 +- src/rtos/eCos.c |2 +- 5 files

Re: [Openocd-development] OpenOCD 0.5.0-rc2 release

2011-07-10 Thread Øyvind Harboe
On the subject of tarballs for release candidates. I think David Brownell and Zach Welch used to do this. At least I think you presented some evidence that perhaps at least the *first* rc should be a tarball so as to catch any problems -- Øyvind Harboe - Can Zylin Consulting help on your

Re: [Openocd-development] [PATCH] Fix typo in command output

2011-07-10 Thread Øyvind Harboe
Fixed. How did you find these? Some sort of tool? -- Øyvind Harboe - Can Zylin Consulting help on your project? US toll free 1-866-980-3434 / International +47 51 87 40 27 http://www.zylin.com/ ___ Openocd-development mailing list

Re: [Openocd-development] [PATCH] Fix typo in command output

2011-07-10 Thread Luca Bruno
Øyvind Harboe scrisse: Fixed. How did you find these? Some sort of tool? Thanks. Yes, it is part of lintian, the debian package checker: http://lintian.debian.org/tags/spelling-error-in-binary.html However, this isn't an accurate source static analyzer, so it does not assure to catch all

Re: [Openocd-development] OpenOCD 0.5.0-rc2 release

2011-07-10 Thread Tomek CEDRO
On Sun, Jul 10, 2011 at 2:41 PM, Luca Bruno lu...@debian.org wrote: As a sidenote, publishing tarball for -rc helps testing in conditions similar to the final one, avoiding late bugs introduced by autotools packaging or similar. Totally agree on this - FreeBSD ports use automatic package

Re: [Openocd-development] JLink woes

2011-07-10 Thread lists
On Sun, 10 14:38 , Jean-Christophe PLAGNIOL-VILLARD wrote: On 09:30 Sun 10 Jul , Xiaofan Chen wrote: On Sun, Jul 10, 2011 at 9:11 AM, li...@neuronenwerk.de wrote: Hi list, ... snip ... The results as of now are that current Segger firmware prevents the adapter from working

Re: [Openocd-development] MIPS target, big endian host

2011-07-10 Thread Drasko DRASKOVIC
On Sat, Jul 9, 2011 at 10:44 AM, Mahr, Stefan stefan.m...@sphairon.com wrote: How do they convert then, when they do not know from which endianes to convert from ? Conversion is done from byte array of jtag chain. How ? buf_get_u32 does conversion from uint8* array example:

Re: [Openocd-development] Versaloon driver update fix, and about jtag_usb_open

2011-07-10 Thread Xiaofan Chen
On Mon, Jul 11, 2011 at 3:17 AM, simon qian simonqian.open...@gmail.com wrote: Hi, Attachment is the versaloon driver update, please commit if no problem. In vsllink_usb_open, I remove call to jtag_usb_open, because jtag_usb_open will only check PID and VID to identify a device. There is 2

Re: [Openocd-development] Versaloon driver update fix, and about jtag_usb_open

2011-07-10 Thread Peter Stuge
simon qian wrote: Attachment is the versaloon driver update, please commit if no problem. Thanks! I encountered a large number of lines with trailing whitespace: $ git am 0001-versaloon-driver-update.patch Applying: versaloon driver update /tmp/openocd/.git/rebase-apply/patch:92: trailing

Re: [Openocd-development] MIPS target, big endian host

2011-07-10 Thread Øyvind Harboe
buf_get_u32:                return (((uint32_t)buffer[3]) 24) |                        (((uint32_t)buffer[2]) 16) |                        (((uint32_t)buffer[1]) 8) |                        (((uint32_t)buffer[0]) 0); I do not get this function at all... What I see is that it is

Re: [Openocd-development] Versaloon driver update fix, and about jtag_usb_open

2011-07-10 Thread simon qian
OK, I'll try fix it soon. 2011/7/11 Peter Stuge pe...@stuge.se simon qian wrote: Attachment is the versaloon driver update, please commit if no problem. Thanks! I encountered a large number of lines with trailing whitespace: $ git am 0001-versaloon-driver-update.patch Applying: