提交 3e2232f2 编写于 作者: J Joe Perches 提交者: Linus Torvalds

checkpatch: update the FSF/GPL address check

The FSF address check is a bit too verbose looking for the GPL text.
Quiet it a bit by requiring --strict for the GPL bit.

Also make the address tests match a few uses of abbreviations for street
names and make it case insensitive.
Signed-off-by: NJoe Perches <joe@perches.com>
Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
Cc: Manfred Spraul <manfred@colorfullife.com>
Cc: Andy Whitcroft <apw@canonical.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 189248d8
...@@ -1970,15 +1970,16 @@ sub process { ...@@ -1970,15 +1970,16 @@ sub process {
} }
# Check for FSF mailing addresses. # Check for FSF mailing addresses.
if ($rawline =~ /You should have received a copy/ || if ($rawline =~ /\bYou should have received a copy/i ||
$rawline =~ /write to the Free Software/ || $rawline =~ /\bwrite to the Free/i ||
$rawline =~ /59 Temple Place/ || $rawline =~ /\b59\s+Temple\s+Pl/i ||
$rawline =~ /51 Franklin Street/) { $rawline =~ /\b51\s+Franklin\s+St/i) {
my $herevet = "$here\n" . cat_vet($rawline) . "\n"; my $herevet = "$here\n" . cat_vet($rawline) . "\n";
my $msg_type = \&ERROR; my $msg_type = \&ERROR;
$msg_type = \&CHK if ($file); $msg_type = \&CHK if ($file);
$msg_type = \&CHK if ($rawline =~ /\bYou should have received a copy/i);
&{$msg_type}("FSF_MAILING_ADDRESS", &{$msg_type}("FSF_MAILING_ADDRESS",
"Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet) "Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet)
} }
# check for Kconfig help text having a real description # check for Kconfig help text having a real description
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册