summaryrefslogtreecommitdiffstats
path: root/BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress')
-rwxr-xr-xBaseTools/BinPipWrappers/PosixLike/LzmaF86Compress19
1 files changed, 19 insertions, 0 deletions
diff --git a/BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress b/BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress
new file mode 100755
index 0000000000..b55352ae4c
--- /dev/null
+++ b/BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress
@@ -0,0 +1,19 @@
+#!/usr/bin/env bash
+#
+# This script will exec LzmaCompress tool with --f86 option that enables converter for x86 code.
+#
+# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
+# 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
+done
+
+exec LzmaCompress "$@"