X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tools%2Fgenboardscfg.py;h=23c956bb8ec3ad2928c6f4703c7584df8e9c9e72;hb=292260ca21723ab78d23fa2cf6b574cf17778991;hp=654100bf07ed692fe5cbd7f1cee5461a95c8414c;hpb=2a8c9c86b92a9ccee3c27286de317e19bb0530b3;p=u-boot diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py index 654100bf07..23c956bb8e 100755 --- a/tools/genboardscfg.py +++ b/tools/genboardscfg.py @@ -328,6 +328,9 @@ class MaintainersDatabase: maintainers = [] status = '-' for line in open(file): + # Check also commented maintainers + if line[:3] == '#M:': + line = line[1:] tag, rest = line[:2], line[2:].strip() if tag == 'M:': maintainers.append(rest)