From 95d0e56b5a71fa660bc56639572bdfe1ebf5bba8 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 28 Nov 2023 15:16:52 -0500 Subject: [PATCH] hvsp: add debug option --- scripts/kernel-send-patches.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts/kernel-send-patches.sh b/scripts/kernel-send-patches.sh index df041a0..6231ac8 100755 --- a/scripts/kernel-send-patches.sh +++ b/scripts/kernel-send-patches.sh @@ -44,6 +44,7 @@ TO_CMD="`pwd`/scripts/get_maintainer.pl --nogit --nogit-fallback --norolestats - CC_CMD="`pwd`/scripts/get_maintainer.pl --nogit --nogit-fallback --norolestats --non --nom" # Set default values +debug="0" commit_start="" commit_end="" DRY_RUN="--dry-run" @@ -64,6 +65,7 @@ print_usage() echo "Usage: ${PROG_NAME} [OPTIONS...]" echo echo "Options:" + echo " -d debug mode" echo " -e end commit (string)" echo " -f folder containing patch infos" echo " -h display this help and exit" @@ -74,8 +76,11 @@ print_usage() echo } -while getopts "e:f:hnprs:" flag ;do +while getopts "de:f:hnprs:" flag ;do case ${flag} in + d) + debug="1" + ;; e) commit_end="${OPTARG}" ;; @@ -283,6 +288,11 @@ if git branch | grep -q ${patches_branch}; then git branch -D ${patches_branch} fi +if [ "${debug}" = "1" ]; then + echo "start commit: ${COMMIT_START_SHA1}" + echo "end commit: ${COMMIT_END_SHA1}" +fi + # Create new branch from base_branch, and apply all our patches onto it: git checkout -b ${patches_branch} ${base_branch} git branch --set-upstream-to ${base_branch} -- 2.20.1