mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 00:45:21 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
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
|