X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=tools%2Fgenboardscfg.py;h=23c956bb8ec3ad2928c6f4703c7584df8e9c9e72;hb=9d8d6825ff327661153cd470926133012fff16ef;hp=654100bf07ed692fe5cbd7f1cee5461a95c8414c;hpb=64f41212d880f3d00c6994d973aadeec5bda1b65;p=karo-tx-uboot.git 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)