From: Tom Rini Date: Sat, 5 Nov 2016 02:59:45 +0000 (-0400) Subject: buildman: Fix building based on 'options' field X-Git-Tag: v2016.11~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e0f2406e737530e804d3ccf877223b61671ede6d;p=u-boot 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 Signed-off-by: Tom Rini Acked-by: Simon Glass --- diff --git a/tools/buildman/board.py b/tools/buildman/board.py index 5d536d5f20..ae0e0b8e17 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