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

2011-07-10 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:20 Sun 10 Jul , Tomek CEDRO wrote: > On Sun, Jul 10, 2011 at 2:41 PM, Luca Bruno 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

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

2011-07-10 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:59 Sun 10 Jul , Øyvind Harboe wrote: > 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 w

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 > 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 dr

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

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 whi

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 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 devices in the > recent V

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 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] 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, wrote: > > > Hi list, > > > ... snip ... > > > The results as of now are that current Segger firmware prevents > > > the adapter from working with Open

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 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 download and extrac

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 ty

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 Openocd-development@

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 pro

[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 --- 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 changed, 5 insertions(+)

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 commi

[Openocd-development] [PATCH] Automatically generate ChangeLog from git log for release tarball

2011-07-10 Thread Luca Bruno
make dist should use git2cl to genereate ChangeLog from git history, populating the placeholder file in released tarball. Signed-off-by: Luca Bruno --- Makefile.am |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1b19ba4..c4c7da7 100644 ---

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, 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 the failure