]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - tools/genboardscfg.py
karo: fdt: fix panel-dpi support
[karo-tx-uboot.git] / tools / genboardscfg.py
index 654100bf07ed692fe5cbd7f1cee5461a95c8414c..23c956bb8ec3ad2928c6f4703c7584df8e9c9e72 100755 (executable)
@@ -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)