Re: [PATCH 1/2] bootwrapper: Allow wrapper script to execute verbosely

2007-10-16 Thread Grant Likely
On 10/16/07, Andreas Schwab <[EMAIL PROTECTED]> wrote: > Grant Likely <[EMAIL PROTECTED]> writes: > > > +# Allow for verbose output > > +if [ "$V" == "1" ]; then > > The correct syntax is [ a = b ] (and the quotes around 1 are not needed, > btw.). heh; I guess I'm not much of a shell programmer.

Re: [PATCH 1/2] bootwrapper: Allow wrapper script to execute verbosely

2007-10-16 Thread Andreas Schwab
Grant Likely <[EMAIL PROTECTED]> writes: > +# Allow for verbose output > +if [ "$V" == "1" ]; then The correct syntax is [ a = b ] (and the quotes around 1 are not needed, btw.). Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg,

[PATCH 1/2] bootwrapper: Allow wrapper script to execute verbosely

2007-10-16 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> Allow wrapper script to print verbose progress when the V is set in the environment. Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- arch/powerpc/boot/wrapper |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/powerpc/boo