diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-07-30 14:08:22 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-30 14:42:02 -0400 |
commit | 73f30b9b8097b1a25f48fbe035f1dee3dac89317 (patch) | |
tree | df5f7803b2532cf330065b624d5ba611545aedc7 /tools/buildman/board.py | |
parent | bb6da87d7eba1bbd51c98a4912ee4e099d79a639 (diff) | |
download | u-boot-imx-73f30b9b8097b1a25f48fbe035f1dee3dac89317.zip u-boot-imx-73f30b9b8097b1a25f48fbe035f1dee3dac89317.tar.gz u-boot-imx-73f30b9b8097b1a25f48fbe035f1dee3dac89317.tar.bz2 |
buildman: adjust for Kconfig
Use "make <board>_defconfig" instead of "make <board>_config".
Invoke tools/genboardscfg.py to generate boards.cfg when it is missing.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/board.py')
-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 5172a47..7bcc932 100644 --- a/tools/buildman/board.py +++ b/tools/buildman/board.py @@ -17,7 +17,7 @@ class Board: soc: Name of SOC, or '' if none (e.g. mx31) vendor: Name of vendor (e.g. armltd) board_name: Name of board (e.g. integrator) - target: Target name (use make <target>_config to configure) + target: Target name (use make <target>_defconfig to configure) options: board-specific options (e.g. integratorcp:CM1136) """ self.target = target |