summaryrefslogtreecommitdiffstats
path: root/BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress
blob: b55352ae4c7993e008273f7bafb5c7a878ec64d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 "$@"