diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2007-10-23 00:27:31 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-11-01 08:11:06 -0400 |
commit | 7f66c1fd03b64db5ddb24cc2ae150c9aebe30cb4 (patch) | |
tree | 6e80ead949bef2368833d673183245edfa267800 /arch/powerpc/boot/wrapper | |
parent | e403149c92a2a0643211debbbb0a9ec7cc04cff7 (diff) |
[POWERPC] bootwrapper: Allow wrapper script to execute verbosely
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>
Diffstat (limited to 'arch/powerpc/boot/wrapper')
-rwxr-xr-x | arch/powerpc/boot/wrapper | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 39b27e5ef6c1..347639c63936 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper | |||
@@ -21,6 +21,11 @@ | |||
21 | # (default ./arch/powerpc/boot) | 21 | # (default ./arch/powerpc/boot) |
22 | # -W dir specify working directory for temporary files (default .) | 22 | # -W dir specify working directory for temporary files (default .) |
23 | 23 | ||
24 | # Allow for verbose output | ||
25 | if [ "$V" = 1 ]; then | ||
26 | set -x | ||
27 | fi | ||
28 | |||
24 | # defaults | 29 | # defaults |
25 | kernel= | 30 | kernel= |
26 | ofile=zImage | 31 | ofile=zImage |