26 lines
812 B
Bash
Executable File
26 lines
812 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Copyright (c) 2015 Intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
[ -f $1 ] && rm $1
|
|
[ -f $1_error.types ] && rm $1_error.types
|
|
[ -f $1_warning.types ] && rm $1_warning.types
|
|
|
|
dirs_to_check="arch drivers include kernel lib"
|
|
files=$(for d in ${dirs_to_check}; do find $d/ -type f -name '*.[ch]'; done)
|
|
for i in $files; do
|
|
${ZEPHYR_BASE}/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types --ignore BRACES,PRINTK_WITHOUT_KERN_LEVEL,SPLIT_STRING --max-line-length=100 $i >> $1
|
|
done
|
|
grep ERROR: $1 |cut -d : -f 3,4 |sort -u > $1_error.types
|
|
grep WARNING: $1 |cut -d : -f 3,4 |sort -u > $1_warning.types
|
|
for i in `cat $1_error.types`; do
|
|
echo -n $i ' '; grep $i $1 | wc -l
|
|
done
|
|
for i in `cat $1_warning.types`; do
|
|
echo -n $i ' '; grep $i $1 | wc -l
|
|
done
|