Re: [U-Boot] [PATCH] MAKEALL: allow additional board selections

2010-10-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201010170713.02380.vap...@gentoo.org> you wrote: > > On Sunday, October 17, 2010 06:31:33 Wolfgang Denk wrote: > > +TEMP=`getopt -o a:c:v:s: --long arch:,cpu:,vendor:,soc: \ > > + -n 'MAKEALL' -- "$@"` > > perhaps split the short/long opts out into dedicated va

Re: [U-Boot] [PATCH] MAKEALL: allow additional board selections

2010-10-17 Thread Mike Frysinger
On Sunday, October 17, 2010 06:31:33 Wolfgang Denk wrote: > +TEMP=`getopt -o a:c:v:s: --long arch:,cpu:,vendor:,soc: \ > + -n 'MAKEALL' -- "$@"` perhaps split the short/long opts out into dedicated variables to make updating easier ? SHORT_OPTS="a:c:v:s:" LONG_OPTS="arch:,cpu:,vendor:,soc:"

[U-Boot] [PATCH] MAKEALL: allow additional board selections

2010-10-17 Thread Wolfgang Denk
Add command line handling to select boards to be built by architecture, CPU family, vendor or SoC name. Signed-off-by: Wolfgang Denk --- MAKEALL | 109 +-- 1 files changed, 106 insertions(+), 3 deletions(-) diff --git a/MAKEALL b/MAKE