tools: mkimage_signed: remove the version as defined the hard-cording
authorJaehoon Chung <jh80.chung@samsung.com>
Fri, 24 Nov 2017 01:35:59 +0000 (10:35 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Mon, 21 Jan 2019 07:08:00 +0000 (16:08 +0900)
Remove the version information as defined the hard-coding.
Just use the version information of argument.

Change-Id: I4067bcd560cedc2f9e9bb46c8bc33482ea5a85f2
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
tools/mkimage_signed.sh

index ac8b425a138ebd43ebc677b961ab03b951933c42..e31acecbf30e3b68529f38f684709d3d5a5c061b 100755 (executable)
@@ -76,12 +76,10 @@ elif [ $CONFIG == "odroid-xu3_defconfig" ]; then
        echo -n "odroid_xu3" > sig-board
 elif [ $CONFIG == "artik530_raptor_config" ]; then
        echo -n "artik530_raptor" > sig-board
-       echo -n "1.0.0" > sig-version
        OUTPUT_BIN="u-boot.bin"
        INPUT_SIZE_LIMIT=$((${OUTPUT_SIZE} - ${SIGN_HDR_SIZE} - 512))
 elif [ $CONFIG == "artik710_raptor_config" ]; then
        echo -n "artik710_raptor" > sig-board
-       echo -n "2.0.0" > sig-version
        INPUT_SIZE_LIMIT=$((${OUTPUT_SIZE} - ${SIGN_HDR_SIZE} - 1120))
        OUTPUT_BIN="u-boot.bin"
 else