]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress
MdeModulePkg: Correct memory type in PrePiDxeCis.h
[mirror_edk2.git] / BaseTools / Bin / CYGWIN_NT-5.1-i686 / LzmaF86Compress
1 #!/usr/bin/env bash
2 #
3 # This script will exec LzmaCompress tool with --f86 option that enables converter for x86 code.
4 #
5 # Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
6 # SPDX-License-Identifier: BSD-2-Clause-Patent
7 #
8
9 for arg; do
10 case $arg in
11 -e|-d)
12 set -- "$@" --f86
13 break
14 ;;
15 esac
16
17 exec LzmaCompress "$@"