1#!/usr/bin/env sh 2# 3# SPDX-License-Identifier: GPL-2.0-only 4 5# DESCR: Check Kconfig files for errors 6 7LINTDIR="$( 8 cd -- "$(dirname "$0")" > /dev/null 2>&1 || return 9 pwd -P 10)" 11 12# shellcheck source=helper_functions.sh 13. "${LINTDIR}/helper_functions.sh" 14 15# Verify that the test can run, tell users the issue 16if [ -z "$(command -v perl)" ]; then 17 echo "The kconfig lint tool uses perl. Please install it to run this test." 18fi 19 20# Check whether coreboot is in a repo 21if [ "${IN_GIT_TREE}" -eq 1 ]; then 22 env perl util/lint/kconfig_lint --warnings_off 2>&1 23else 24 env perl util/lint/kconfig_lint --no_git_grep --warnings_off 2>&1 25fi 26