[openwrt/openwrt] scripts/mkits.sh: Fix the hash algorithm paramter

LEDE Commits lede-commits at lists.infradead.org
Sun Jul 18 11:50:14 PDT 2021


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/7270d768da6a30d6d47b33a6365d6fb5fda8d745

commit 7270d768da6a30d6d47b33a6365d6fb5fda8d745
Author: Yonghyu Ban <yonghyu at empo.im>
AuthorDate: Tue Jul 6 16:13:59 2021 +0900

    scripts/mkits.sh: Fix the hash algorithm paramter
    
    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 at empo.im>
---
 scripts/mkits.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/mkits.sh b/scripts/mkits.sh
index 7533baf799..1add8087b0 100755
--- a/scripts/mkits.sh
+++ b/scripts/mkits.sh
@@ -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;;



More information about the lede-commits mailing list