summaryrefslogtreecommitdiff
path: root/BaseTools/BinWrappers
diff options
context:
space:
mode:
authorSong, BinX <binx.song@intel.com>2017-04-13 09:19:48 +0800
committerLiming Gao <liming.gao@intel.com>2017-05-05 11:15:24 +0800
commit98cb468435be54c3191f4bca48cf5135b1927eaf (patch)
treebbf17a2991105618e47522e9eea5e4a38317f2aa /BaseTools/BinWrappers
parent9ee3283bfb466c44afa5692591445cd377f08377 (diff)
BaseTools: Add --version option in Brotli and BrotliCompress
https://bugzilla.tianocore.org/show_bug.cgi?id=464 V2: - Add build version V1: - Add --version option in Brotli and BrotliCompress Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Bell Song <binx.song@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/BinWrappers')
-rwxr-xr-xBaseTools/BinWrappers/PosixLike/BrotliCompress29
1 files changed, 20 insertions, 9 deletions
diff --git a/BaseTools/BinWrappers/PosixLike/BrotliCompress b/BaseTools/BinWrappers/PosixLike/BrotliCompress
index 59c6465dad..49358b2329 100755
--- a/BaseTools/BinWrappers/PosixLike/BrotliCompress
+++ b/BaseTools/BinWrappers/PosixLike/BrotliCompress
@@ -11,32 +11,43 @@
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#
-LVL="--quality 9"
+QLT="-q 9"
+INPUTFLAG=0
while [ $# != 0 ];do
case $1 in
-d)
- ARGS+="--decompress "
+ INPUTFLAG=1
+ ARGS+="$1 "
;;
-e)
+ INPUTFLAG=1
;;
-g)
- ARGS+="--gap $2 "
+ ARGS+="$1 $2 "
shift
;;
- -l)
- LVL="--quality $2 "
+ -o)
+ ARGS+="$1 $2 "
shift
;;
- -o)
- ARGS+="--output $2 "
+ -q)
+ QLT="$1 $2 "
shift
;;
*)
- ARGS+="--input $1 "
+ if [ $INPUTFLAG -eq 1 ]
+ then
+ if [ -z $2 ]
+ then
+ ARGS+="$QLT -i $1 "
+ break;
+ fi
+ fi
+ ARGS+="$1 "
esac
shift
done
-exec Brotli $ARGS $LVL
+exec Brotli $ARGS