Re: [U-Boot] [PATCH v2] MAKEALL: Add summary information

2009-09-21 Thread Wolfgang Denk
Dear Peter Tyser, In message <1253489996.27060.60.ca...@ptyser-laptop> you wrote: > > > +# Print statistics when ctrl-c is pressed > > > +trap "print_stats; exit " 2 > > > > Why only on signal 2? Usually we use "1 2 3 15" in such cases. > > 2's the only case I've ever used for MAKEALL, I'll add

Re: [U-Boot] [PATCH v2] MAKEALL: Add summary information

2009-09-20 Thread Peter Tyser
> > +# Print statistics when ctrl-c is pressed > > +trap "print_stats; exit " 2 > > Why only on signal 2? Usually we use "1 2 3 15" in such cases. 2's the only case I've ever used for MAKEALL, I'll add the other cases as you suggest. > Also, you might add "0" here and then... > > > @@ -932,3 +9

Re: [U-Boot] [PATCH v2] MAKEALL: Add summary information

2009-09-20 Thread Wolfgang Denk
Dear Peter Tyser, In message <1253316982-20606-1-git-send-email-pty...@xes-inc.com> you wrote: > > index 1d50c34..a63d028 100755 > --- a/MAKEALL > +++ b/MAKEALL > @@ -1,5 +1,8 @@ > #!/bin/sh > > +# Print statistics when ctrl-c is pressed > +trap "print_stats; exit " 2 Why only on signal 2? Usu