[Openocd-development] ADuC702x flash plugin patch

2009-01-19 Thread Michael Ashton
The attached patch makes the aduc702x flash plugin work for me with the following setup: * Olimex ARM-USB-OCD JTAG adapter * Olimex ADUC-P7026 development board * Cygwin The changes are as follows: * Flash bank setup made static * Sector information now filled in -- GDB can now download code *

Re: [Openocd-development] Fwd: [Openocd-svn] r1333 - trunk

2009-01-19 Thread Spencer Oliver
If bash isn't availabe with msys, what is another solution? lets revert back to using bash - it can be installed on msys. To be honest we have another issue guess-rev.sh cannot be part of the dist anyway for a start it just reads the svn rev version - we do not have one on a release, or any

[Openocd-development] [PATCH] add imx21

2009-01-19 Thread Alan Carvalho de Assis
This patch add support to imx21 processor TAP. addimx21.patch Description: application/mbox ___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-development

Re: [Openocd-development] [patch] change search path order (Was: openocd -s option)

2009-01-19 Thread Kees Jongenburger
Please ignore patch it still contains bugs. Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7f60c48bd6e0 (LWP 8992)] 0x7f60c3fc3060 in strlen () from /lib/libc.so.6 (gdb) bt #0 0x7f60c3fc3060 in strlen () from /lib/libc.so.6 #1 0x7f60c3f8fe1a in vfprintf

Re: [Openocd-development] svf support

2009-01-19 Thread SimonQian
Thank you. I'll try it after new year -- Chinese New Year. And report if there is any problem. 2009-01-19 Best Regards, Simon Qian SimonQian(simonq...@simonqian.com) www.SimonQian.com 发件人: Dick Hollenbeck 发送时间: 2009-01-19 21:59:11 收件人: SimonQian 抄送: openocd-development 主题: Re:

Re: [Openocd-development] Fwd: [Openocd-svn] r1333 - trunk

2009-01-19 Thread Rick Altherr
On Jan 19, 2009, at 3:56 AM, Spencer Oliver wrote: If bash isn't availabe with msys, what is another solution? lets revert back to using bash - it can be installed on msys. To be honest we have another issue guess-rev.sh cannot be part of the dist anyway for a start it just reads the

Re: [Openocd-development] Fwd: [Openocd-svn] r1333 - trunk

2009-01-19 Thread Spencer Oliver
Well, what I had in trunk should have worked on msys as it would have used /bin/echo which typically does support -n. But yes, there is the problem of no svn files in a release distribution. We shouldn't even bother with reporting the SVN version for a released version. My knowledge

Re: [Openocd-development] Fwd: [Openocd-svn] r1333 - trunk

2009-01-19 Thread Rick Altherr
On Jan 19, 2009, at 9:07 AM, Spencer Oliver wrote: Well, what I had in trunk should have worked on msys as it would have used /bin/echo which typically does support -n. But yes, there is the problem of no svn files in a release distribution. We shouldn't even bother with reporting the SVN

Re: [Openocd-development] Final pass at 0.1.0 source distribution

2009-01-19 Thread Steve Franks
On Sat, Jan 17, 2009 at 4:24 PM, Rick Altherr kc8...@kc8apf.net wrote: I've put an updated tarball up at http://www.kc8apf.net/files/openocd-0.1.0.tar.gz. This version incorporates the manual page installation fix and should also fix a bug in guess-rev.sh. Please give it a spin on Linux,

[Openocd-development] [PATCH] ADuC702x flash plugin

2009-01-19 Thread Michael Ashton
(Sorry if this shows up more than once -- I've just subscribed, and the first attempt didn't seem to work.) The attached patch makes the aduc702x flash plugin work for me with the following setup: * Olimex ARM-USB-OCD JTAG adapter * Olimex ADUC-P7026 development board * Cygwin The patch makes

[Openocd-development] configure patch

2009-01-19 Thread Spencer Oliver
Hi, This patch checks for the presence of guess-rev.sh, if it is not present it is a file release. A release build can also be forced with the --enable-release configure option If configure finds guess-rev.sh the output string will be as it is now: Open On-Chip Debugger 1.0 (2009-01-19-20:24)

Re: [Openocd-development] SVF in OpenOCD

2009-01-19 Thread Kees Jongenburger
On Sun, Jan 18, 2009 at 10:53 PM, Dick Hollenbeck d...@softplc.com wrote: With that assumption in mind, I again feel it bolsters my belief that C is NOT the correct language for any part of this project except for the cable drivers, and even they could be done in C++. I am fluent in C, C++,

[Openocd-development] s3c2410

2009-01-19 Thread Kees Jongenburger
Hi I am trying to get the nailkit (hammer) working on a current version of openocd. for older versions things worked out pretty well but now I can't get much working. When I startup openocd It can't even find the TAP Debug: 65 550 openocd.c:152 handle_init_command(): jtag interface init

Re: [Openocd-development] configure patch

2009-01-19 Thread Rick Altherr
On Jan 19, 2009, at 12:53 PM, Spencer Oliver wrote: Hi, This patch checks for the presence of guess-rev.sh, if it is not present it is a file release. A release build can also be forced with the --enable-release configure option If configure finds guess-rev.sh the output string will be as

Re: [Openocd-development] Final pass at 0.1.0 source distribution

2009-01-19 Thread Rick Altherr
On Jan 19, 2009, at 2:20 PM, Steve Franks wrote: This is because you have to tell openocd about your config. take for the docs openocd -f interface/parport.cfg -f target/at91r40008.cfg -c init - c reset halt Oh, dumb me. The wording made me think we were now installing the cfg's in

Re: [Openocd-development] Final pass at 0.1.0 source distribution

2009-01-19 Thread Steve Franks
We do install them in a common location, but you still need to tell us which files to load. The standard configs are just installed in the standard search path. So, '-f target/at91r40008.cfg' looks for target/at91r40008.cfg in the current directory and then in the search paths. We split the

Re: [Openocd-development] Final pass at 0.1.0 source distribution

2009-01-19 Thread Uwe Hermann
On Mon, Jan 19, 2009 at 04:04:23PM -0700, Steve Franks wrote: We do install them in a common location, but you still need to tell us which files to load. The standard configs are just installed in the standard search path. So, '-f target/at91r40008.cfg' looks for target/at91r40008.cfg in

[Openocd-development] --debug broken

2009-01-19 Thread Uwe Hermann
Hi, I don't have much time to investigate this right now, but -d / --debug seems to be broken. It _might_ work when you pass e.g. '-d 3' the first time on the command line, but on the next run of the _same_ command line (just changing '-d 3' to e.g. '-d 1') it will not notice the change. OpenOCD

[Openocd-development] [PATCH] fix/enhance 'make maintainer-clean'

2009-01-19 Thread Zach Welch
Howdy, The attached patch allows 'make maintainer-clean' to remove all of the files created by the bootstrap script, allowing them to be regenerated. It was created with r1341 and tested on Linux. Cheers, Zach Welch Corvallis, OR Index: src/helper/Makefile.am

Re: [Openocd-development] --debug broken

2009-01-19 Thread Rick Altherr
On Jan 19, 2009, at 4:33 PM, Uwe Hermann wrote: Hi, I don't have much time to investigate this right now, but -d / --debug seems to be broken. It _might_ work when you pass e.g. '-d 3' the first time on the command line, but on the next run of the _same_ command line (just changing '-d

Re: [Openocd-development] [PATCH] add axm0432 interface config

2009-01-19 Thread Rick Altherr
On Jan 16, 2009, at 8:00 AM, Alan Carvalho de Assis wrote: This patch add Axiom axm0432 interface addaxm0432.cfg___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-development

Re: [Openocd-development] AT91SAM9260 and Olimex Changes

2009-01-19 Thread Rick Altherr
Committed in r1350. Rick On Jan 17, 2009, at 1:39 AM, Dean Glazeski wrote: I went ahead and did some moving of some files relating to the AT91SAM9260 and the Olimex SAM9-L9260 development board. I also created another file for the Olimex JTAG TINY that doesn't include the 'A'.

[Openocd-development] Yet another 0.1.0 package

2009-01-19 Thread Rick Altherr
Due to the fixes for 'make maintainer-clean' and handling release versioning better, I've spun yet another 0.1.0 source distribution. I've placed it at http://www.kc8apf.net/files/openocd-0.1.0.tar.gz per usual. 'make distcheck' passes on OS X 10.5. Same request applies: try to compile

Re: [Openocd-development] Yet another 0.1.0 package

2009-01-19 Thread Dean Glazeski
Tested on Fedora 10 using the following commands: libftdi: ./configure --enable-parport --enable-parport_ppdev --enable-ft2232_libftdi --enable-ep93xx --enable-at91rm9200 --enable-usbprog --enable-presto_libftdi --enable-jlink --enable-vsllink --enable-rlink --enable-dummy --enable-gw16012