summaryrefslogtreecommitdiffstats
path: root/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@bsdio.com>2023-01-27 09:42:48 -0700
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-01-30 16:50:14 +0000
commitcdcee3d17ba17db60dbcf7eafb8ea7c621d467ba (patch)
tree7c5022c19138f3d7be519865ff6d407df01f8566 /BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress
parent4b384c21ad02fbf5eda25a1516cc72fa66b150f6 (diff)
downloadedk2-cdcee3d17ba17db60dbcf7eafb8ea7c621d467ba.tar.gz
edk2-cdcee3d17ba17db60dbcf7eafb8ea7c621d467ba.tar.bz2
edk2-cdcee3d17ba17db60dbcf7eafb8ea7c621d467ba.zip
BaseTools: Delete Bin/{CYGWIN_NT-5.1-i686,Darwin-i386} directories
The Bin/CYGWIN_NT-5.1-i686 and Bin/Darwin-i386 directories contained files needed for RVCT support. Since EDK2 no longer supports RVCT, delete those directories. Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> Acked-by: Bob Feng <bob.c.feng@intel.com>
Diffstat (limited to 'BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress')
-rwxr-xr-xBaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress17
1 files changed, 0 insertions, 17 deletions
diff --git a/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress b/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress
deleted file mode 100755
index c712b131be..0000000000
--- a/BaseTools/Bin/CYGWIN_NT-5.1-i686/LzmaF86Compress
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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 "$@"