aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-10-30 16:01:54 -0400
committerTom Rini <trini@konsulko.com>2023-10-30 16:01:54 -0400
commitcbba1b7766bd93d74e28202c46e69095ac13760b (patch)
treeba75e840777ea0213e0c97fb72234d1ea4ed7769 /scripts
parentc594b430225c36189a8fee2a710264d0458dc3d6 (diff)
parent5ed1c55fb4c23dc9f14b9c8d1d687f8c0ee703ac (diff)
Merge branch '2023-10-30-assorted-general-updates'
- Two Kconfig content fixes, fix some issues reported by Coverity, resync get_maintainer.pl (two small fixees), update i2c_eeprom, and fix an off by one in addrmap_set_entry
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get_maintainer.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 81116e215e..6c58578e98 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -981,6 +981,7 @@ sub get_maintainers {
}
foreach my $email (@file_emails) {
+ $email = mailmap_email($email);
my ($name, $address) = parse_email($email);
my $tmp_email = format_email($name, $address, $email_usename);
@@ -1718,7 +1719,7 @@ sub vcs_exists {
%VCS_cmds = %VCS_cmds_hg;
return 2 if eval $VCS_cmds{"available"};
%VCS_cmds = ();
- if (!$printed_novcs) {
+ if (!$printed_novcs && $email_git) {
warn("$P: No supported VCS found. Add --nogit to options?\n");
warn("Using a git repository produces better results.\n");
warn("Try Linus Torvalds' latest git repository using:\n");