summaryrefslogtreecommitdiff
path: root/tools/buildman
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2016-11-05 02:59:45 (GMT)
committerTom Rini <trini@konsulko.com>2016-11-06 12:33:41 (GMT)
commite0f2406e737530e804d3ccf877223b61671ede6d (patch)
tree806f2b837313cebb5a95827bef4cce27f6b65536 /tools/buildman
parent4b6035da482cccda06aeb419634f99937c9fc783 (diff)
downloadu-boot-fsl-qoriq-e0f2406e737530e804d3ccf877223b61671ede6d.tar.xz
buildman: Fix building based on 'options' field
The README for buildman says that we can use any field in boards.cfg to decide what to build. However, we were not saving the options field correctly. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r--tools/buildman/board.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildman/board.py b/tools/buildman/board.py
index 5d536d5..ae0e0b8 100644
--- a/tools/buildman/board.py
+++ b/tools/buildman/board.py
@@ -92,9 +92,9 @@ class Board:
self.board_name = board_name
self.vendor = vendor
self.soc = soc
- self.props = [self.target, self.arch, self.cpu, self.board_name,
- self.vendor, self.soc]
self.options = options
+ self.props = [self.target, self.arch, self.cpu, self.board_name,
+ self.vendor, self.soc, self.options]
self.build_it = False