mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
25112101d0
commit
dee7c68f54
1 changed files with 2 additions and 0 deletions
|
@ -294,6 +294,8 @@ class MaintainersDatabase:
|
||||||
tmp = self.database[target][0]
|
tmp = self.database[target][0]
|
||||||
if tmp.startswith('Maintained'):
|
if tmp.startswith('Maintained'):
|
||||||
return 'Active'
|
return 'Active'
|
||||||
|
elif tmp.startswith('Supported'):
|
||||||
|
return 'Active'
|
||||||
elif tmp.startswith('Orphan'):
|
elif tmp.startswith('Orphan'):
|
||||||
return 'Orphan'
|
return 'Orphan'
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue