public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] BaseTools: Fix BrotliCompress run issue on Linux
@ 2021-02-04  8:53 fengyunhua
  2021-02-05  1:13 ` 回复: " gaoliming
       [not found] ` <1660B4F0A1DF89A5.26096@groups.io>
  0 siblings, 2 replies; 3+ messages in thread
From: fengyunhua @ 2021-02-04  8:53 UTC (permalink / raw)
  To: devel; +Cc: Bob Feng, Liming Gao, Yuwei Chen

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3210
BrotliCompress changed, but not completely on Linux

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Yuwei Chen <yuwei.chen@intel.com>
Signed-off-by: Yunhua Feng <fengyunhua@byosoft.com.cn>
---
 BaseTools/BinWrappers/PosixLike/Brotli        | 29 -------------------
 .../BinWrappers/PosixLike/BrotliCompress      | 28 +++++++++++++++++-
 2 files changed, 27 insertions(+), 30 deletions(-)
 delete mode 100755 BaseTools/BinWrappers/PosixLike/Brotli

diff --git a/BaseTools/BinWrappers/PosixLike/Brotli b/BaseTools/BinWrappers/PosixLike/Brotli
deleted file mode 100755
index 0945d86d92..0000000000
--- a/BaseTools/BinWrappers/PosixLike/Brotli
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env bash
-
-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##*/}
-
-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" "$@"
-  fi
-elif [ -e "$dir/../../Source/C/bin/$cmd" ]
-then
-  exec "$dir/../../Source/C/bin/$cmd" "$@"
-else
-  echo "Unable to find the real '$cmd' to run"
-  echo "This message was printed by"
-  echo "  $0"
-  exit 127
-fi
-
diff --git a/BaseTools/BinWrappers/PosixLike/BrotliCompress b/BaseTools/BinWrappers/PosixLike/BrotliCompress
index 663860bb3e..426f2a2ef1 100755
--- a/BaseTools/BinWrappers/PosixLike/BrotliCompress
+++ b/BaseTools/BinWrappers/PosixLike/BrotliCompress
@@ -8,6 +8,10 @@
 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 test $# -gt 0
 do
   case $1 in
@@ -31,4 +35,26 @@ do
   shift
 done
 
-exec Brotli $QLT $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
-- 
2.27.0.windows.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* 回复: [PATCH] BaseTools: Fix BrotliCompress run issue on Linux
  2021-02-04  8:53 [PATCH] BaseTools: Fix BrotliCompress run issue on Linux fengyunhua
@ 2021-02-05  1:13 ` gaoliming
       [not found] ` <1660B4F0A1DF89A5.26096@groups.io>
  1 sibling, 0 replies; 3+ messages in thread
From: gaoliming @ 2021-02-05  1:13 UTC (permalink / raw)
  To: 'Yunhua Feng', devel; +Cc: 'Bob Feng', 'Yuwei Chen'

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: Yunhua Feng <fengyunhua@byosoft.com.cn>
> 发送时间: 2021年2月4日 16:54
> 收件人: devel@edk2.groups.io
> 抄送: Bob Feng <bob.c.feng@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Yuwei Chen <yuwei.chen@intel.com>
> 主题: [PATCH] BaseTools: Fix BrotliCompress run issue on Linux
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3210
> BrotliCompress changed, but not completely on Linux
> 
> Cc: Bob Feng <bob.c.feng@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Yuwei Chen <yuwei.chen@intel.com>
> Signed-off-by: Yunhua Feng <fengyunhua@byosoft.com.cn>
> ---
>  BaseTools/BinWrappers/PosixLike/Brotli        | 29 -------------------
>  .../BinWrappers/PosixLike/BrotliCompress      | 28 +++++++++++++++++-
>  2 files changed, 27 insertions(+), 30 deletions(-)
>  delete mode 100755 BaseTools/BinWrappers/PosixLike/Brotli
> 
> diff --git a/BaseTools/BinWrappers/PosixLike/Brotli
> b/BaseTools/BinWrappers/PosixLike/Brotli
> deleted file mode 100755
> index 0945d86d92..0000000000
> --- a/BaseTools/BinWrappers/PosixLike/Brotli
> +++ /dev/null
> @@ -1,29 +0,0 @@
> -#!/usr/bin/env bash
> -
> -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##*/}
> -
> -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" "$@"
> -  fi
> -elif [ -e "$dir/../../Source/C/bin/$cmd" ]
> -then
> -  exec "$dir/../../Source/C/bin/$cmd" "$@"
> -else
> -  echo "Unable to find the real '$cmd' to run"
> -  echo "This message was printed by"
> -  echo "  $0"
> -  exit 127
> -fi
> -
> diff --git a/BaseTools/BinWrappers/PosixLike/BrotliCompress
> b/BaseTools/BinWrappers/PosixLike/BrotliCompress
> index 663860bb3e..426f2a2ef1 100755
> --- a/BaseTools/BinWrappers/PosixLike/BrotliCompress
> +++ b/BaseTools/BinWrappers/PosixLike/BrotliCompress
> @@ -8,6 +8,10 @@
>  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 test $# -gt 0
>  do
>    case $1 in
> @@ -31,4 +35,26 @@ do
>    shift
>  done
> 
> -exec Brotli $QLT $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
> --
> 2.27.0.windows.1




^ permalink raw reply	[flat|nested] 3+ messages in thread

* 回复: [edk2-devel] 回复: [PATCH] BaseTools: Fix BrotliCompress run issue on Linux
       [not found] ` <1660B4F0A1DF89A5.26096@groups.io>
@ 2021-02-18  1:46   ` gaoliming
  0 siblings, 0 replies; 3+ messages in thread
From: gaoliming @ 2021-02-18  1:46 UTC (permalink / raw)
  To: devel, gaoliming, 'Yunhua Feng'
  Cc: 'Bob Feng', 'Yuwei Chen'

Yunhua:
  Please also fix it in
edk2\BaseTools\BinPipWrappers\PosixLike\BrotliCompress.

Thanks
Liming
> -----邮件原件-----
> 发件人: bounce+27952+71273+4905953+8761045@groups.io
> <bounce+27952+71273+4905953+8761045@groups.io> 代表 gaoliming
> 发送时间: 2021年2月5日 9:13
> 收件人: 'Yunhua Feng' <fengyunhua@byosoft.com.cn>;
> devel@edk2.groups.io
> 抄送: 'Bob Feng' <bob.c.feng@intel.com>; 'Yuwei Chen'
> <yuwei.chen@intel.com>
> 主题: [edk2-devel] 回复: [PATCH] BaseTools: Fix BrotliCompress run issue
on
> Linux
> 
> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> 
> > -----邮件原件-----
> > 发件人: Yunhua Feng <fengyunhua@byosoft.com.cn>
> > 发送时间: 2021年2月4日 16:54
> > 收件人: devel@edk2.groups.io
> > 抄送: Bob Feng <bob.c.feng@intel.com>; Liming Gao
> > <gaoliming@byosoft.com.cn>; Yuwei Chen <yuwei.chen@intel.com>
> > 主题: [PATCH] BaseTools: Fix BrotliCompress run issue on Linux
> >
> > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3210
> > BrotliCompress changed, but not completely on Linux
> >
> > Cc: Bob Feng <bob.c.feng@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Yuwei Chen <yuwei.chen@intel.com>
> > Signed-off-by: Yunhua Feng <fengyunhua@byosoft.com.cn>
> > ---
> >  BaseTools/BinWrappers/PosixLike/Brotli        | 29 -------------------
> >  .../BinWrappers/PosixLike/BrotliCompress      | 28
> +++++++++++++++++-
> >  2 files changed, 27 insertions(+), 30 deletions(-)
> >  delete mode 100755 BaseTools/BinWrappers/PosixLike/Brotli
> >
> > diff --git a/BaseTools/BinWrappers/PosixLike/Brotli
> > b/BaseTools/BinWrappers/PosixLike/Brotli
> > deleted file mode 100755
> > index 0945d86d92..0000000000
> > --- a/BaseTools/BinWrappers/PosixLike/Brotli
> > +++ /dev/null
> > @@ -1,29 +0,0 @@
> > -#!/usr/bin/env bash
> > -
> > -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##*/}
> > -
> > -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" "$@"
> > -  fi
> > -elif [ -e "$dir/../../Source/C/bin/$cmd" ]
> > -then
> > -  exec "$dir/../../Source/C/bin/$cmd" "$@"
> > -else
> > -  echo "Unable to find the real '$cmd' to run"
> > -  echo "This message was printed by"
> > -  echo "  $0"
> > -  exit 127
> > -fi
> > -
> > diff --git a/BaseTools/BinWrappers/PosixLike/BrotliCompress
> > b/BaseTools/BinWrappers/PosixLike/BrotliCompress
> > index 663860bb3e..426f2a2ef1 100755
> > --- a/BaseTools/BinWrappers/PosixLike/BrotliCompress
> > +++ b/BaseTools/BinWrappers/PosixLike/BrotliCompress
> > @@ -8,6 +8,10 @@
> >  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 test $# -gt 0
> >  do
> >    case $1 in
> > @@ -31,4 +35,26 @@ do
> >    shift
> >  done
> >
> > -exec Brotli $QLT $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
> > --
> > 2.27.0.windows.1
> 
> 
> 
> 
> 
> 
> 




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-18  1:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-04  8:53 [PATCH] BaseTools: Fix BrotliCompress run issue on Linux fengyunhua
2021-02-05  1:13 ` 回复: " gaoliming
     [not found] ` <1660B4F0A1DF89A5.26096@groups.io>
2021-02-18  1:46   ` 回复: [edk2-devel] " gaoliming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox