diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-09-11 15:52:51 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-09-12 09:14:37 -0400 |
commit | 27af930e9a5c91365ca639ada580b338eabe4989 (patch) | |
tree | e81fe7231a870fd72d457ee7fcaa2eb48dfe1b3c /tools/buildman | |
parent | 7bcee5f7eef740c506117e6da1226bc8ec7f466a (diff) | |
download | u-boot-27af930e9a5c91365ca639ada580b338eabe4989.tar.gz |
Merge and reformat boards.cfg and MAINTAINERS
Put all informations about targets, including state (active or
orphan) and maintainers, in boards.cfg; remove MAINTAINERS;
adjust the build system accordingly.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/board.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/board.py b/tools/buildman/board.py index cc7b5d011f..a388896417 100644 --- a/tools/buildman/board.py +++ b/tools/buildman/board.py @@ -63,7 +63,7 @@ class Boards: for upto in range(len(fields)): if fields[upto] == '-': fields[upto] = '' - while len(fields) < 7: + while len(fields) < 9: fields.append('') board = Board(*fields) |