diff options
Diffstat (limited to 'roms/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress')
-rwxr-xr-x | roms/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roms/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress b/roms/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress new file mode 100755 index 000000000..c712b131b --- /dev/null +++ b/roms/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# +# This script will exec LzmaCompress tool with --f86 option that enables converter for x86 code. +# +# Copyright (c) 2012, Intel Corporation. All rights reserved.<BR> +# SPDX-License-Identifier: BSD-2-Clause-Patent +# + +for arg; do + case $arg in + -e|-d) + set -- "$@" --f86 + break + ;; +esac + +exec LzmaCompress "$@" |