mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
b1264ef1e3
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
20 lines
421 B
Bash
Executable File
20 lines
421 B
Bash
Executable File
#!/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 "$@"
|