From: Seung-Woo Kim Date: Tue, 17 Oct 2017 05:33:57 +0000 (+0900) Subject: scripts: mkbootimg_rpi3.sh: Add u-boot.img with optee os X-Git-Tag: submit/tizen_4.0/20171025.075611~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7bd6aacca812407b0ea58d3744a61821658d5953;p=platform%2Fkernel%2Flinux-rpi3.git scripts: mkbootimg_rpi3.sh: Add u-boot.img with optee os There is optee atf for rpi3, so it should be also installed in boot.img. Add u-boot.img with optee os for atf. Change-Id: I93e880f1310252b4d254e99a34803eb2094d1862 Signed-off-by: Seung-Woo Kim --- diff --git a/scripts/mkbootimg_rpi3.sh b/scripts/mkbootimg_rpi3.sh index f063185bb676..63b8e5856224 100755 --- a/scripts/mkbootimg_rpi3.sh +++ b/scripts/mkbootimg_rpi3.sh @@ -23,6 +23,12 @@ wget ${REPO_URL} UBOOT=`awk -F\" '{ print $2 }' index.html | grep u-boot-rpi3` wget ${REPO_URL}${UBOOT} unrpm ${UBOOT} + +# install u-boot.img having optee.bin extracted from atf-rpi3 rpm package in download.tizen.org. +ATF=`awk -F\" '{ print $2 }' index.html | grep atf-rpi3` +wget ${REPO_URL}${ATF} +unrpm ${ATF} + popd cp -a ${TMP_UBOOT_PATH}/boot/* ./tmp rm -rf ${TMP_UBOOT_PATH}