blob: 33ade6ded3be4994f23d2eefaf23f184b01d7bdc [file] [log] [blame]
Martin Roth0ad5fbd2020-12-24 12:06:38 -07001#!/usr/bin/env sh
Martin Roth037dbe42017-06-03 21:15:57 -06002#
Patrick Georgi7333a112020-05-08 20:48:04 +02003# SPDX-License-Identifier: GPL-2.0-only
4
Martin Roth037dbe42017-06-03 21:15:57 -06005# DESCR: Verify that the word 'coreboot' is lowercase
6
Martin Rothd81debd2022-06-03 00:06:57 -06007LINTDIR="$(
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"
Martin Roth037dbe42017-06-03 21:15:57 -060014
Martin Roth7e464dc2017-09-01 09:22:43 -060015EXCLUDE='^3rdparty/\|util/crossgcc/xgcc\|Binary file\|coreboot\|COREBOOT\|CorebootPayload\|CorebootModule\|minnowboard.org/Coreboot\|.*\.patch$\|CorebootBdsLib\|^payloads/external'
Martin Roth037dbe42017-06-03 21:15:57 -060016
Martin Rothd81debd2022-06-03 00:06:57 -060017# # Check last commit message if the code is in a git repo
18if [ "${IN_GIT_TREE}" -eq 1 ]; then
19 if [ -n "$(${GIT} log -n 1 | grep -i 'coreboot' | grep -v "$EXCLUDE" )" ]; then
Martin Roth037dbe42017-06-03 21:15:57 -060020 echo "'coreboot' should be lowercase in commit message"
21 fi
Martin Roth037dbe42017-06-03 21:15:57 -060022fi
23
Martin Rothd81debd2022-06-03 00:06:57 -060024${GREP_FILES} -in "coreboot" | grep -v "$EXCLUDE";