aboutsummaryrefslogtreecommitdiff
path: root/build-uefi.sh
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2015-06-22 14:14:35 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2015-06-22 14:15:56 +0100
commita8ad4e4064db078dac77ba94d1d02e669b7606c0 (patch)
tree5fe1212110844d8a788c1437042487c1ae7f1ce3 /build-uefi.sh
parent70211827e9301233ee2814bfc5b55fd3586be8ef (diff)
Add UEFI_BINARY variable
UEFI does not always output the same filename for every platform, so add the UEFI_BINARY variable to allow the variant to specify the filename. Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'build-uefi.sh')
-rwxr-xr-xbuild-uefi.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-uefi.sh b/build-uefi.sh
index a576833..faf13ad 100755
--- a/build-uefi.sh
+++ b/build-uefi.sh
@@ -41,7 +41,7 @@
# UEFI_BUILD_MODE - DEBUG or RELEASE
# UEFI_TOOLCHAIN - Toolchain supported by Linaro uefi-tools: GCC49, GCC48 or GCC47
# UEFI_OUTPUT_PLATFORMS - list of outputs to export
-
+# UEFI_BINARY - the filename of the UEFI binary
do_build ()
{
if [ "$UEFI_BUILD_ENABLED" == "1" ]; then
@@ -85,7 +85,7 @@ do_package ()
pushd $TOP_DIR
for item in $UEFI_OUTPUT_PLATFORMS; do
mkdir -p ${OUTDIR}/${UEFI_OUTPUT_DESTS[$item]}
- cp ./$UEFI_PATH/Build/$item/${UEFI_BUILD_MODE}_${UEFI_TOOLCHAIN}/FV/BL33_AP_UEFI.fd \
+ cp ./$UEFI_PATH/Build/$item/${UEFI_BUILD_MODE}_${UEFI_TOOLCHAIN}/FV/${UEFI_BINARY} \
${OUTDIR}/${UEFI_OUTPUT_DESTS[$item]}/uefi.bin
done
popd