cd9110b6d2
The rules.h & compiler.h includes were removed in previous commits, so add the checks to keep them out to the linter. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: If4964ff26f5e83abbbdd26c2b1cd9a2eab5a0a0d Reviewed-on: https://review.coreboot.org/c/coreboot/+/67350 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
27 lines
657 B
Bash
Executable file
27 lines
657 B
Bash
Executable file
#!/usr/bin/env sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# DESCR: Check for auto-included headers
|
|
|
|
LC_ALL=C export LC_ALL
|
|
|
|
INCLUDED_DIRS='^src/'
|
|
EXCLUDED_FILES='src/include/kconfig.h'
|
|
|
|
HEADER_FILES="k\?config rules compiler"
|
|
|
|
# Use git grep if the code is in a git repo, otherwise use grep.
|
|
if [ -n "$(command -v git)" ] && \
|
|
[ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]
|
|
then
|
|
GREP_FILES="git grep -n"
|
|
else
|
|
GREP_FILES="grep -rn"
|
|
fi
|
|
|
|
for header in $HEADER_FILES; do
|
|
${GREP_FILES} "#[[:blank:]]*include[[:blank:]]\+[\"<][[:blank:]]*${header}\.h[[:blank:]]*[\">]" | \
|
|
grep "$INCLUDED_DIRS" | \
|
|
grep -v "$EXCLUDED_FILES"; \
|
|
done
|