mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
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>
This commit is contained in:
parent
4b6035da48
commit
e0f2406e73
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue