summaryrefslogtreecommitdiffstats
path: root/bin/ptxdist
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-12-03 21:11:32 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-12-06 17:46:44 +0100
commita0b8075391cfeb324f60e42482b1c34f95d1de71 (patch)
tree405cf09eee6d109b7a25dea6cc64ef4432e4e87a /bin/ptxdist
parent51a507e477a28a508af081e1bf6352b3f6c60fc2 (diff)
downloadptxdist-a0b8075391cfeb324f60e42482b1c34f95d1de71.tar.gz
ptxdist-a0b8075391cfeb324f60e42482b1c34f95d1de71.tar.xz
ptxdist: add --progress option
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'bin/ptxdist')
-rwxr-xr-xbin/ptxdist5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/ptxdist b/bin/ptxdist
index f6efe88ae..15511e5c7 100755
--- a/bin/ptxdist
+++ b/bin/ptxdist
@@ -1000,6 +1000,8 @@ Options:
--output-sync Improve output readability for parallel building.
Disabled by default except for quiet builds.
--no-output-sync Disable output-sync if enabled by default.
+ --progress Show progress information. This is only available
+ in quiet mode.
--j-intern=<n>, -ji<n> set number of parallel builds in packages
(default = 2*CPUs)
@@ -1305,6 +1307,9 @@ parse_first()
--no-output-sync)
PTXDIST_OUTPUT_SYNC=0
;;
+ --progress)
+ PTXDIST_PROGRESS=1
+ ;;
-q|--quiet)
PTXDIST_QUIET=1
;;