Skip to content

Commit

Permalink
[POWERPC] bootwrapper: Allow wrapper script to execute verbosely
Browse files Browse the repository at this point in the history
Allow wrapper script to print verbose progress when the V is set in the
environment.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
  • Loading branch information
Grant Likely authored and Josh Boyer committed Nov 1, 2007
1 parent e403149 commit 7f66c1f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/powerpc/boot/wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
# (default ./arch/powerpc/boot)
# -W dir specify working directory for temporary files (default .)

# Allow for verbose output
if [ "$V" = 1 ]; then
set -x
fi

# defaults
kernel=
ofile=zImage
Expand Down

0 comments on commit 7f66c1f

Please sign in to comment.