[Openocd-development] Google presentation on OpenOCD Gerrit experience

2011-11-24 Thread Øyvind Harboe
Comments welcome!

https://docs.google.com/present/view?id=dhftn35p_14s2xxcbt3


-- 
Øyvind Harboe - Can Zylin Consulting help on your project?
US toll free 1-866-980-3434
http://www.zylin.com/
___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


Re: [Openocd-development] Google presentation on OpenOCD Gerrit experience

2011-11-24 Thread Duane Ellis

On 11/24/2011 3:28 AM, Øyvind Harboe wrote:

Comments welcome!

https://docs.google.com/present/view?id=dhftn35p_14s2xxcbt3


Very good, and quite interesting.

-Duane.

___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


Re: [Openocd-development] Google presentation on OpenOCD Gerrit experience

2011-11-24 Thread Spencer Oliver
On 24 November 2011 08:28, Øyvind Harboe oyvind.har...@zylin.com wrote:
 Comments welcome!

 https://docs.google.com/present/view?id=dhftn35p_14s2xxcbt3



It was a good read during my lunch :-)

Spen
___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


Re: [Openocd-development] Google presentation on OpenOCD Gerrit experience

2011-11-24 Thread Laurent Gauch

good read ! Thanks.

What do you mean by Senior developers ?
What do you really interpret At the sharp rise, Gerrit was introduced ?

Laurent
 http://www.amontec.com
 HIGH-SPEED USB JTAG INTERFACE as generic as possible

___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


Re: [Openocd-development] Google presentation on OpenOCD Gerrit experience

2011-11-24 Thread Øyvind Harboe
On Thu, Nov 24, 2011 at 4:41 PM, Laurent Gauch
laurent.ga...@amontec.com wrote:
 good read ! Thanks.

 What do you mean by Senior developers ?

Developers bestowes us with their great acumen.

 What do you really interpret At the sharp rise, Gerrit was introduced ?

# of commits rose from 3 to 30 a week.

-- 
Øyvind Harboe - Can Zylin Consulting help on your project?
US toll free 1-866-980-3434
http://www.zylin.com/
___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


[Openocd-development] Patch for at91sam9263 tcl

2011-11-24 Thread Mick Davis

Hi

I have the attached trivial patch.  It fixes a missing brace in a tcl 
script.



(I've had no success with the instructions in HACKING. I get the 
following error for the push.  Its not clear to me if I need some 
further authorization. I've also tried different username settings.)


 ! [remote rejected] HEAD - refs/for/master (not Signed-off-by 
author/committer/uploader)
error: failed to push some refs to 
'ssh://mi...@openocd.zylin.com:29418/openocd.git'


--

Mick Davis
Goanna Technologies Pty Ltd
+61 8 9444 2634
diff --git a/tcl/chip/atmel/at91/at91sam9263_matrix.cfg b/tcl/chip/atmel/at91/at91sam9263_matrix.cfg
index 8a74bcd..ad3d9a2 100644
--- a/tcl/chip/atmel/at91/at91sam9263_matrix.cfg
+++ b/tcl/chip/atmel/at91/at91sam9263_matrix.cfg
@@ -7,7 +7,7 @@ set AT91_MATRIX_MCFG5	[expr ($AT91_MATRIX + 0x14)]	;# Master Configuration Regis
 set AT91_MATRIX_MCFG6	[expr ($AT91_MATRIX + 0x18)]	;# Master Configuration Register 6
 set AT91_MATRIX_MCFG7	[expr ($AT91_MATRIX + 0x1C)]	;# Master Configuration Register 7
 set AT91_MATRIX_MCFG8	[expr ($AT91_MATRIX + 0x20)]	;# Master Configuration Register 8
-set		AT91_MATRIX_ULBT	[expr (7  0)	;# Undefined Length Burst Type
+set		AT91_MATRIX_ULBT	[expr (7  0)]	;# Undefined Length Burst Type
 set			AT91_MATRIX_ULBT_INFINITE	[expr (0  0)]
 set			AT91_MATRIX_ULBT_SINGLE		[expr (1  0)]
 set			AT91_MATRIX_ULBT_FOUR		[expr (2  0)]
___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


Re: [Openocd-development] Patch for at91sam9263 tcl

2011-11-24 Thread Austin, Alex
git commit --amend --sign-off
Or something like that. It's complaining that there's no Signed Off By line 
in the commit message.

Mick Davis mi...@goanna.iinet.net.au wrote:


Hi

I have the attached trivial patch.  It fixes a missing brace in a tcl
script.


(I've had no success with the instructions in HACKING. I get the
following error for the push.  Its not clear to me if I need some
further authorization. I've also tried different username settings.)

  ! [remote rejected] HEAD - refs/for/master (not Signed-off-by
author/committer/uploader)
error: failed to push some refs to
'ssh://mi...@openocd.zylin.com:29418/openocd.git'

--

Mick Davis
Goanna Technologies Pty Ltd
+61 8 9444 2634
___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


Re: [Openocd-development] Patch for at91sam9263 tcl

2011-11-24 Thread evan

I just ran across this error too.

The Signed-off-by and Change-Id tags must be in the LAST PARAGRAPH of 
the commit message.



The error message doesn't mention that - 
(http://code.google.com/p/gerrit/issues/detail?id=606)
Also, I've found that Gerrit does not print any error messages when a 
push fails using HTTP - 
(http://code.google.com/p/gerrit/issues/detail?id=1051)



Regards,

Evan



On Thu, 24 Nov 2011 23:35:53 -0600, Austin, Alex wrote:

git commit --amend --sign-off
Or something like that. It's complaining that there's no Signed Off
By line in the commit message.

Mick Davis mi...@goanna.iinet.net.au wrote:


Hi

I have the attached trivial patch.  It fixes a missing brace in a tcl
script.


(I've had no success with the instructions in HACKING. I get the
following error for the push.  Its not clear to me if I need some
further authorization. I've also tried different username settings.)

  ! [remote rejected] HEAD - refs/for/master (not Signed-off-by
author/committer/uploader)
error: failed to push some refs to
'ssh://mi...@openocd.zylin.com:29418/openocd.git'

--

Mick Davis
Goanna Technologies Pty Ltd
+61 8 9444 2634
___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development


___
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development