summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfvp-pre-boot.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/fvp-pre-boot.sh b/fvp-pre-boot.sh
index f4dbac9..19f83d0 100755
--- a/fvp-pre-boot.sh
+++ b/fvp-pre-boot.sh
@@ -110,9 +110,10 @@ cd ${WORKSPACE}
set +e
################################################################################
+JUNO_BL30=${REPO_WORKSPACE}/bin/bl30.bin
if [ "${platform}" == "juno" ] && [ "${BUILD_UEFI}" != "yes" ]; then
echo "Using pre-built binaries for Juno"
- export BL30=${REPO_WORKSPACE}/bin/BL0_SCP_Boot_ROM.bin
+ export BL30=${JUNO_BL30}
export BL33=${REPO_WORKSPACE}/bin/bl33.bin
echo "BL30=${BL30}"
echo "BL33=${BL33}"
@@ -186,7 +187,7 @@ else
juno)
${UEFI_TOOLS_DIR}/uefi-build.sh -b ${TARGET} juno
count_errors $?
- export BL30=${REPO_WORKSPACE}/bin/BL0_SCP_Boot_ROM.bin
+ export BL30=${JUNO_BL30}
export BL33=`pwd`/`find . -name BL32_AP_UEFI.fd`
cp -a ${BL33} ${builddir}/uefi_juno.bin
;;