diff options
author | Doug Anderson <dianders@chromium.org> | 2012-12-03 14:43:18 +0000 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-01-31 15:23:40 -0800 |
commit | a1dcee84c993232a6c5a1f3b4e54952b587cf1d1 (patch) | |
tree | 113b9f92c4430231683587127b244b9abb3fac31 /tools/patman/README | |
parent | 8568baed3bd9b4c0b8d71d1f933cdac459b0eae1 (diff) | |
download | u-boot-imx-a1dcee84c993232a6c5a1f3b4e54952b587cf1d1.zip u-boot-imx-a1dcee84c993232a6c5a1f3b4e54952b587cf1d1.tar.gz u-boot-imx-a1dcee84c993232a6c5a1f3b4e54952b587cf1d1.tar.bz2 |
patman: Add the concept of multiple projects
There are cases that we want to support different settings (or maybe
even different aliases) for different projects. Add support for this
by:
* Adding detection for two big projects: U-Boot and Linux.
* Adding default settings for Linux (U-Boot is already good with the
standard patman defaults).
* Extend the new "settings" feature in .patman to specify per-project
settings.
Signed-off-by: Doug Anderson <dianders@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/README')
-rw-r--r-- | tools/patman/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/patman/README b/tools/patman/README index 2743da9..1832ebd 100644 --- a/tools/patman/README +++ b/tools/patman/README @@ -114,6 +114,19 @@ verbose: True <<< +If you want to adjust settings (or aliases) that affect just a single +project you can add a section that looks like [project_settings] or +[project_alias]. If you want to use tags for your linux work, you could +do: + +>>> + +[linux_settings] +process_tags: True + +<<< + + How to run it ============= |