Commit 1f0a6742dd900b866c046e29d287c28f0df9bd51

Authored by Nicolas Palix
Committed by Michal Marek
1 parent f722406faa

Coccinelle: Make 'report' the default mode

It appears that the 'report' mode is the one always
provided by the semantic patches included in the kernel.
It is thus more natural to select it by default.

The 'chain' mode is however kept and the 'patch' mode
is still the first tried in that case.

Signed-off-by: Nicolas Palix <nicolas.palix@imag.fr>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 1 changed file with 11 additions and 3 deletions Side-by-side Diff

... ... @@ -44,11 +44,19 @@
44 44  
45 45 if [ "$MODE" = "" ] ; then
46 46 if [ "$ONLINE" = "0" ] ; then
47   - echo 'You have not explicitly specified the mode to use. Using default "chain" mode.'
48   - echo 'All available modes will be tried (in that order): patch, report, context, org'
  47 + echo 'You have not explicitly specified the mode to use. Using default "report" mode.'
  48 + echo 'Available modes are the following: patch, report, context, org'
49 49 echo 'You can specify the mode with "make coccicheck MODE=<mode>"'
  50 + echo 'Note however that some modes are not implemented by some semantic patches.'
50 51 fi
51   - MODE="chain"
  52 + MODE="report"
  53 +fi
  54 +
  55 +if [ "$MODE" = "chain" ] ; then
  56 + if [ "$ONLINE" = "0" ] ; then
  57 + echo 'You have selected the "chain" mode.'
  58 + echo 'All available modes will be tried (in that order): patch, report, context, org'
  59 + fi
52 60 elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
53 61 FLAGS="$FLAGS -no_show_diff"
54 62 fi