Patrick Georgi has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/28449 )
Change subject: util/lint: update non-ascii linter checking rules ......................................................................
util/lint: update non-ascii linter checking rules
- Check non-external payloads - Remove directories that aren't in the coreboot git repo. - Remove non-phrase rule from list of excluded phrases
Change-Id: I9e056e8b43af567f102dfc0db76f60328aa1ed04 Signed-off-by: Martin Roth martinr@coreboot.org Reviewed-on: https://review.coreboot.org/c/28449 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: HAOUAS Elyes ehaouas@noos.fr Reviewed-by: Stefan Reinauer stefan.reinauer@coreboot.org --- M util/lint/lint-stable-016-non-ascii 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Stefan Reinauer: Looks good to me, approved HAOUAS Elyes: Looks good to me, but someone else must approve
diff --git a/util/lint/lint-stable-016-non-ascii b/util/lint/lint-stable-016-non-ascii index 3c22900..fbb830d 100755 --- a/util/lint/lint-stable-016-non-ascii +++ b/util/lint/lint-stable-016-non-ascii @@ -17,9 +17,9 @@ LC_ALL=C export LC_ALL
INCLUDED_FILES='.[chsS]$|.asl$|.cb$|.inc$|Kconfig|.ld$|.txt|.hex' -EXCLUDED_DIRS='^payloads/|^src/vendorcode/|^Documentation/|^build/|^3rdparty/|^.git/|^coreboot-builds/|^util/nvidia/cbootimage' +EXCLUDED_DIRS='^payloads/external/|^src/vendorcode/|^Documentation/' EXCLUDED_FILES='to-wiki/towiki.sh$|vga/vga_font|video/font|PDCurses.*x11' -EXCLUDED_PHRASES='Copyright|Ported to|Intel®|°C|°F|Athlon™|Copyright.*©|A-Za-zÀ-ÿ' +EXCLUDED_PHRASES='Copyright|Ported to|Intel®|°C|°F|Athlon™|Copyright.*©'
# Exit if git isn't present or the code isn't in a git repo if [ -z "$(command -v git)" ] || \