diff options
author | Simon Glass <sjg@chromium.org> | 2013-09-23 17:35:17 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-10-01 14:39:14 -0600 |
commit | 4281ad8e7fcb304724127281f258d198001fd41a (patch) | |
tree | 5e777c526881590623f2edd7c31eb7ddbf101159 /tools/buildman/README | |
parent | e19d5781ec5ea6de190f774835f361f8a43758d1 (diff) | |
download | u-boot-imx-4281ad8e7fcb304724127281f258d198001fd41a.zip u-boot-imx-4281ad8e7fcb304724127281f258d198001fd41a.tar.gz u-boot-imx-4281ad8e7fcb304724127281f258d198001fd41a.tar.bz2 |
buildman: Allow make flags to be specified for each board
There are a few make options such as BUILD_TAG which can be provided when
building U-Boot. Provide a way for buildman to pass these flags to make
also.
The flags should be in a [make-flags] section and arranged by target name
(the 'target' column in boards.cfg. See the README for more details.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/README')
-rw-r--r-- | tools/buildman/README | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/buildman/README b/tools/buildman/README index 734ada6..f63f278 100644 --- a/tools/buildman/README +++ b/tools/buildman/README @@ -629,6 +629,28 @@ It is common when refactoring code for the rodata to decrease as the text size increases, and vice versa. +Providing 'make' flags +====================== + +U-Boot's build system supports a few flags (such as BUILD_TAG) which affect +the build product. These flags can be specified in the buildman settings +file. They can also be useful when building U-Boot against other open source +software. + +[make-flags] +at91-boards=ENABLE_AT91_TEST=1 +snapper9260=${at91-boards} BUILD_TAG=442 +snapper9g45=${at91-boards} BUILD_TAG=443 + +This will use 'make ENABLE_AT91_TEST=1 BUILD_TAG=442' for snapper9260 +and 'make ENABLE_AT91_TEST=1 BUILD_TAG=442' for snapper9g45. A special +variable ${target} is available to access the target name (snapper9260 and +snapper9g20 in this case). Variables are resolved recursively. + +It is expected that any variables added are dealt with in U-Boot's +config.mk file and documented in the README. + + Other options ============= |