From: Jaehoon Chung Date: Wed, 22 Nov 2017 11:14:17 +0000 (+0900) Subject: tools: mkimage_signed: add the artik710 version as 2.0.0 X-Git-Tag: submit/tizen/20190213.074817~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6007705bb740fa47b40ee47dddbaeb6951be497f;p=profile%2Fcommon%2Fplatform%2Fkernel%2Fu-boot-artik7.git tools: mkimage_signed: add the artik710 version as 2.0.0 Current ARTIK7 version is A710_OS_2.0.0. To check the os version, set the sig-product as 2.0.0. It needs to remain the 1120byte for generating fip-nonsecure.img. - Nexell header (1K) + FIP header (96bytes) = 1120byte Change-Id: Icc214310bd68ae51eb2a49c62806982c19e07e78 Signed-off-by: Jaehoon Chung --- diff --git a/tools/mkimage_signed.sh b/tools/mkimage_signed.sh index f38603821a..b7452b5562 100755 --- a/tools/mkimage_signed.sh +++ b/tools/mkimage_signed.sh @@ -74,7 +74,9 @@ elif [ $CONFIG == "artik530_raptor_config" ]; then INPUT_SIZE_LIMIT=$((${OUTPUT_SIZE} - ${SIGN_HDR_SIZE} - 512)) elif [ $CONFIG == "artik710_raptor_config" ]; then echo -n "artik710_raptor" > sig-board - OUTPUT_BIN="fip-nonsecure.img" + echo -n "2.0.0" > sig-product + INPUT_SIZE_LIMIT=$((${OUTPUT_SIZE} - ${SIGN_HDR_SIZE} - 1120)) + OUTPUT_BIN="u-boot.bin" else echo -n "slp_u1" > sig-board fi