soc/intel/common/gpio: support 16-bit CPU Port ID
[coreboot.git] / util / lint / lint-stable-026-line-endings
blobd1b8ed3c90532f5098ee2bcf546c9db6850140ba
1 #!/usr/bin/env sh
3 # SPDX-License-Identifier: GPL-2.0-only
5 # DESCR: Verify that files don't contain windows line endings
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 EXCLUDE='^3rdparty/\|^payloads/external\|^.git\|build\|util/crossgcc/xgcc'
17 ${GREP_FILES} -IlP "\r$" | grep -v "$EXCLUDE"