summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLokesh Vutla <lokeshvutla@ti.com>2017-05-10 10:49:52 (GMT)
committerTom Rini <trini@konsulko.com>2017-05-12 12:37:36 (GMT)
commitdee7c68f5481221a8da6d51b03eb42c7485ba001 (patch)
tree784f6c4dcd7585b5e0b35317e5ad92f774bc6b0c /tools
parent25112101d0af42cfc1ddf330d78757082965557a (diff)
downloadu-boot-dee7c68f5481221a8da6d51b03eb42c7485ba001.tar.xz
tools/genboardscfg.py: Make 'Supported' as known status
As per MAINTAINERS[1] file description, 'Supported' is a valid status for a board. But buildman thinks 'Maintained' is the only valid state and complains about boards with 'Supported' status. Update buildman to accept 'Supported' as valid state. [1] http://git.denx.de/?p=u-boot.git;a=blob;f=MAINTAINERS;h=0962b47bf9057b22e93624e070c0204b893790dc;hb=HEAD#l10 Reported-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/genboardscfg.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py
index c2efad5..2e871fe 100755
--- a/tools/genboardscfg.py
+++ b/tools/genboardscfg.py
@@ -294,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: