diff options
Diffstat (limited to 'util/lint/lint-008-kconfig')
-rwxr-xr-x | util/lint/lint-008-kconfig | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/util/lint/lint-008-kconfig b/util/lint/lint-008-kconfig index 16ae251184..d3da17ea5d 100755 --- a/util/lint/lint-008-kconfig +++ b/util/lint/lint-008-kconfig @@ -12,7 +12,19 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# DESCR: check Kconfig files +# DESCR: check Kconfig files for warnings and errors LC_ALL=C export LC_ALL -env perl util/lint/kconfig_lint --no_git_grep --warnings_off + +# Verify that the test can run, tell users the issue +if [ -z "$(command -v perl)" ]; then + echo "The kconfig lint tool uses perl. Please install it to run this test." +fi + +# If coreboot is in a git repo, use git grep to check as it will ignore any +# files in the tree that aren't checked into git +if [ -n "$(command -v git)" ] && [ -e ".git" ]; then + env perl util/lint/kconfig_lint +else + env perl util/lint/kconfig_lint --no_git_grep +fi |