]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/BinWrappers/PosixLike/BrotliCompress
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / BinWrappers / PosixLike / BrotliCompress
index 49358b232984b777eb854535267eb6deae895ca0..426f2a2ef19654083c85bcaf7846c30dcbb2c8a9 100755 (executable)
@@ -1,53 +1,60 @@
 #!/usr/bin/env bash
 #
-# This script will exec Brotli tool.
+# This script will exec Brotli tool with -e/-d options.
 #
-# Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
-# This program and the accompanying materials
-# are licensed and made available under the terms and conditions of the BSD License
-# which accompanies this distribution.  The full text of the license may be found at
-# http://opensource.org/licenses/bsd-license.php
+# Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>
+# SPDX-License-Identifier: BSD-2-Clause-Patent
 #
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-#
-QLT="-q 9"
-INPUTFLAG=0
+QLT="-q 9 -w 22"
+ARGS=
+
+full_cmd=${BASH_SOURCE:-$0} # see http://mywiki.wooledge.org/BashFAQ/028 for a discussion of why $0 is not a good choice here
+dir=$(dirname "$full_cmd")
+cmd=${full_cmd##*/}
 
-while [ $# != 0 ];do
+while test $# -gt 0
+do
   case $1 in
+    -e)
+      ;;
     -d)
-      INPUTFLAG=1
       ARGS+="$1 "
-    ;;
-    -e)
-      INPUTFLAG=1
-    ;;
-    -g)
+      ;;
+    -o|-g)
       ARGS+="$1 $2 "
       shift
-    ;;
-    -o)
-      ARGS+="$1 $2 "
-      shift
-    ;;
+      ;;
     -q)
       QLT="$1 $2 "
       shift
-    ;;
+      ;;
     *)
-      if [ $INPUTFLAG -eq 1 ]
-      then
-        if [ -z $2 ]
-          then
-            ARGS+="$QLT -i $1 "
-            break;
-        fi
-      fi
       ARGS+="$1 "
+      ;;
   esac
-
-shift
+  shift
 done
 
-exec Brotli $ARGS
+
+if [ -n "$WORKSPACE" ] && [ -e "$WORKSPACE/Conf/BaseToolsCBinaries" ]
+then
+  exec "$WORKSPACE/Conf/BaseToolsCBinaries/$cmd"
+elif [ -n "$WORKSPACE" ] && [ -e "$EDK_TOOLS_PATH/Source/C" ]
+then
+  if [ ! -e "$EDK_TOOLS_PATH/Source/C/bin/$cmd" ]
+  then
+    echo "BaseTools C Tool binary was not found ($cmd)"
+    echo "You may need to run:"
+    echo "  make -C $EDK_TOOLS_PATH/Source/C"
+  else
+    exec "$EDK_TOOLS_PATH/Source/C/bin/$cmd" $QLT $ARGS
+  fi
+elif [ -e "$dir/../../Source/C/bin/$cmd" ]
+then
+  exec "$dir/../../Source/C/bin/$cmd" $QLT $ARGS
+else
+  echo "Unable to find the real '$cmd' to run"
+  echo "This message was printed by"
+  echo "  $0"
+  exit 127
+fi