Martin L Roth has uploaded this change for review. ( 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(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/38/62938/1
diff --git a/makechips.sh b/makechips.sh index ddf1953..e6080f2 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..."