diff --git a/scripts/check-kernel-fix b/scripts/check-kernel-fix index 4e57d02..f163b73 100755 --- a/scripts/check-kernel-fix +++ b/scripts/check-kernel-fix @@ -37,7 +37,6 @@ usage() echo "Options:" echo " -h: help" echo " -q: quiet mode (no progress)" - echo " -s: show state of branch where an action would be needed" echo " -v: verbose mode: show state of each branch and even NOP actions" } @@ -306,7 +305,6 @@ find_and_print_toplevel_actions() verbose_mode= quiet_mode= -show_only_states= while getopts "shcvq" OPT do @@ -315,9 +313,6 @@ do usage exit ;; - s) - show_only_states=1 - ;; v) verbose_mode=1 ;; @@ -362,11 +357,9 @@ for_each_build_branch "$branches_conf" check_branch_state $sha $references # Newline after the dots showing progress [ -z "$quiet_mode" ] && echo -if [ -z "$show_only_states" ] ; then for_each_build_branch "$branches_conf" find_and_print_toplevel_actions $cvss if [ ! -e "$actions_file" ] ; then echo "EVERYTHING IS OK!" fi -fi