summaryrefslogtreecommitdiffstats
path: root/BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom
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/EfiRom
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/EfiRom')
-rwxr-xr-xBaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom29
1 files changed, 0 insertions, 29 deletions
diff --git a/BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom b/BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom
deleted file mode 100755
index 0945d86d92..0000000000
--- a/BaseTools/Bin/CYGWIN_NT-5.1-i686/EfiRom
+++ /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
-