LzmaF86Compress 347 B

1234567891011121314151617
  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. for arg; do
  9. case $arg in
  10. -e|-d)
  11. set -- "$@" --f86
  12. break
  13. ;;
  14. esac
  15. exec LzmaCompress "$@"