xref: /aosp_15_r20/external/coreboot/util/lint/lint-stable-021-coreboot-lowercase (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1#!/usr/bin/env sh
2#
3# SPDX-License-Identifier: GPL-2.0-only
4
5# DESCR: Verify that the word 'coreboot' is lowercase
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
15EXCLUDE='^3rdparty/\|util/crossgcc/xgcc\|Binary file\|coreboot\|COREBOOT\|CorebootPayload\|CorebootModule\|minnowboard.org/Coreboot\|.*\.patch$\|CorebootBdsLib\|^payloads/external'
16
17# # 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
20		echo "'coreboot' should be lowercase in commit message"
21	fi
22fi
23
24${GREP_FILES} -in "coreboot" | grep -v "$EXCLUDE";
25