Martin L Roth has submitted this change. ( https://review.coreboot.org/c/em100/+/62938 )
Change subject: makechips.sh: Build makedpfw if not present ......................................................................
makechips.sh: Build makedpfw if not present
Check for makedpfw and build it if it hasn't been built yet.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: If5dd121a4977126c456162de7d4328d69e741902 --- M makechips.sh 1 file changed, 4 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, but someone else must approve Stefan Reinauer: Looks good to me, approved
diff --git a/makechips.sh b/makechips.sh index 8010644..5e3531d 100755 --- a/makechips.sh +++ b/makechips.sh @@ -28,6 +28,10 @@ WD="$(cd "$(dirname "$(eval echo "$0")")" || exit 1; pwd)" TD="${WD}/em100_home"
+if [[ ! -f "${WD}/makedpfw" ]]; then + make makedpfw +fi + cd "${TEMP}" || exit 1 if [ -r "${WD}/${FILE}" ]; then echo " Copying ${FILE}..."
null-- To view, visit https://review.coreboot.org/c/em100/+/62938 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: em100 Gerrit-Branch: master Gerrit-Change-Id: If5dd121a4977126c456162de7d4328d69e741902 Gerrit-Change-Number: 62938 Gerrit-PatchSet: 2 Gerrit-Owner: Martin L Roth martinroth@google.com Gerrit-Reviewer: Paul Menzel paulepanter@mailbox.org Gerrit-Reviewer: Stefan Reinauer stefan.reinauer@coreboot.org Gerrit-Reviewer: build bot (Jenkins) no-reply@coreboot.org Gerrit-MessageType: merged