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