scripts/mkits.sh: Fix the hash algorithm paramter
authorYonghyu Ban <yonghyu@empo.im>
Tue, 6 Jul 2021 07:13:59 +0000 (16:13 +0900)
committerDaniel Golle <daniel@makrotopia.org>
Sun, 18 Jul 2021 18:37:30 +0000 (19:37 +0100)
The mkits.sh script help message states hash algorithm can be
specified using the -H command-line option, but it does not work
currently due to a bug in the script.

This patch fixes this problem by changing the option from -S to
-H and specify getopts parameter after it

Signed-off-by: Yonghyu Ban <yonghyu@empo.im>
scripts/mkits.sh

index 7533baf79999c1f84bc9e1fb61a999aa52cbe395..1add8087b028cbbbc4234454d991be8db5d39cfa 100755 (executable)
@@ -46,7 +46,7 @@ LOADABLES=
 DTOVERLAY=
 DTADDR=
 
-while getopts ":A:a:c:C:D:d:e:f:i:k:n:o:O:v:r:S" OPTION
+while getopts ":A:a:c:C:D:d:e:f:i:k:n:o:O:v:r:H:" OPTION
 do
        case $OPTION in
                A ) ARCH=$OPTARG;;
@@ -63,7 +63,7 @@ do
                o ) OUTPUT=$OPTARG;;
                O ) DTOVERLAY="$DTOVERLAY ${OPTARG}";;
                r ) ROOTFS=$OPTARG;;
-               S ) HASH=$OPTARG;;
+               H ) HASH=$OPTARG;;
                v ) VERSION=$OPTARG;;
                * ) echo "Invalid option passed to '$0' (options:$*)"
                usage;;