]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - tools/genboardscfg.py
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
[people/ms/u-boot.git] / tools / genboardscfg.py
index 654100bf07ed692fe5cbd7f1cee5461a95c8414c..c2efad55ab4609ed17c006551b2dd0ce6eee3c1e 100755 (executable)
@@ -21,7 +21,6 @@ import glob
 import multiprocessing
 import optparse
 import os
-import subprocess
 import sys
 import tempfile
 import time
@@ -328,6 +327,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)