mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
Rework argument passing in analysis plugin
This commit is contained in:
parent
3e1afd1e00
commit
76ff756598
@ -73,6 +73,6 @@ matrix:
|
|||||||
name: "LongSoft/UEFITool"
|
name: "LongSoft/UEFITool"
|
||||||
description: "UEFITool"
|
description: "UEFITool"
|
||||||
notification_email: $NOTIFICATION_EMAIL
|
notification_email: $NOTIFICATION_EMAIL
|
||||||
build_command_prepend: "NOBUILD=1 ./unixbuild.sh"
|
build_command_prepend: "./unixbuild.sh --configure"
|
||||||
build_command: "PRECONFIGURED=1 ./unixbuild.sh"
|
build_command: "./unixbuild.sh --build"
|
||||||
branch_pattern: new_engine
|
branch_pattern: new_engine
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
UEFITool is a viewer and editor of firmware images conforming to UEFI Platform Interface (PI) Specifications.
|
UEFITool is a viewer and editor of firmware images conforming to UEFI Platform Interface (PI) Specifications.
|
||||||
|
|
||||||
![UEFITool icon](https://raw.githubusercontent.com/LongSoft/UEFITool/new_engine/UEFITool/icons/uefitool_64x64.png "UEFITool icon")
|
![UEFITool icon](https://raw.githubusercontent.com/LongSoft/UEFITool/new_engine/UEFITool/icons/uefitool_64x64.png "UEFITool icon")
|
||||||
[![Build Status](https://travis-ci.org/LongSoft/UEFITool.svg?branch=master)](https://travis-ci.org/LongSoft/UEFITool) [![Scan Status](https://scan.coverity.com/projects/17209/badge.svg?flat=1)](https://scan.coverity.com/projects/17209)
|
[![Build Status](https://travis-ci.org/LongSoft/UEFITool.svg?branch=master)](https://travis-ci.org/LongSoft/UEFITool) [![Scan Status](https://scan.coverity.com/projects/17209/badge.svg?flat=1)](https://scan.coverity.com/projects/17209)
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,6 +3,12 @@
|
|||||||
UTARGET=$(uname)
|
UTARGET=$(uname)
|
||||||
BINSUFFIX=""
|
BINSUFFIX=""
|
||||||
|
|
||||||
|
if [ "$1" = "--configure" ]; then
|
||||||
|
export NOBUILD=1
|
||||||
|
elif [ "$1" = "--build" ]; then
|
||||||
|
export PRECONFIGURED=1
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$UTARGET" = "Darwin" ]; then
|
if [ "$UTARGET" = "Darwin" ]; then
|
||||||
export UPLATFORM="mac"
|
export UPLATFORM="mac"
|
||||||
elif [ "$UTARGET" = "Linux" ]; then
|
elif [ "$UTARGET" = "Linux" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user