]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - tools/genboardscfg.py
sandbox: Enable more console options
[people/ms/u-boot.git] / tools / genboardscfg.py
index 654100bf07ed692fe5cbd7f1cee5461a95c8414c..2e871feaf4fa76948aaf80ba7f55bc40a2e10da6 100755 (executable)
@@ -21,7 +21,6 @@ import glob
 import multiprocessing
 import optparse
 import os
-import subprocess
 import sys
 import tempfile
 import time
@@ -295,6 +294,8 @@ class MaintainersDatabase:
         tmp = self.database[target][0]
         if tmp.startswith('Maintained'):
             return 'Active'
+        elif tmp.startswith('Supported'):
+            return 'Active'
         elif tmp.startswith('Orphan'):
             return 'Orphan'
         else:
@@ -328,6 +329,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)