source:
vbox/trunk/src/VBox/Devices/EFI/Firmware/BaseTools/BinPipWrappers/PosixLike/LzmaF86Compress@
105681
最後變更 在這個檔案從105681是 89983,由 提交於 4 年 前 | |
---|---|
|
|
檔案大小: 421 位元組 |
行 | |
---|---|
1 | #!/usr/bin/env bash |
2 | # |
3 | # This script will exec LzmaCompress tool with --f86 option that enables converter for x86 code. |
4 | # |
5 | # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> |
6 | # Copyright (c) 2012, Intel Corporation. All rights reserved.<BR> |
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
8 | # |
9 | |
10 | for arg; do |
11 | case $arg in |
12 | -e|-d) |
13 | set -- "$@" --f86 |
14 | break |
15 | ;; |
16 | esac |
17 | done |
18 | |
19 | exec LzmaCompress "$@" |
注意:
瀏覽 TracBrowser
來幫助您使用儲存庫瀏覽器