X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=scripts%2Fkernel-send-patches.sh;h=6231ac8f224a86e2df60983f292c30243d3f7b3d;hb=95d0e56b5a71fa660bc56639572bdfe1ebf5bba8;hp=df041a00e3be4131cdd282cd8601cf8d955588bb;hpb=c53fd54ba5bf43779d97efdfa0af2f8e58261c0d;p=hvutilities.git 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}