diff options
author | Doug Anderson | 2012-12-03 14:43:17 +0000 |
---|---|---|
committer | Simon Glass | 2013-01-31 15:23:40 -0800 |
commit | 8568baed3bd9b4c0b8d71d1f933cdac459b0eae1 (patch) | |
tree | 7f04bfce9b08dacb8d94bea7ec97723300388889 /tools/patman/README | |
parent | 21a19d70e2c2aa45cfe62c6adf8ceee9fcfbcacb (diff) |
patman: Add support for settings in .patman
This patch adds support for a [settings] section in the .patman file.
In this section you can add settings that will affect the default
values for command-line options.
Support is added in a generic way such that any setting can be updated
by just referring to the "dest" of the option that is passed to the
option parser. At the moment options that would make sense to put in
settings are "ignore_errors", "process_tags", and "verbose". You
could override them like:
[settings]
ignore_errors: True
process_tags: False
verbose: True
The settings functionality is also used in a future change which adds
support for per-project settings.
Signed-off-by: Doug Anderson <dianders@chromium.org>
Diffstat (limited to 'tools/patman/README')
-rw-r--r-- | tools/patman/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/patman/README b/tools/patman/README index 16b51eb59c7..2743da9eb29 100644 --- a/tools/patman/README +++ b/tools/patman/README @@ -98,6 +98,22 @@ The checkpatch.pl in the U-Boot tools/ subdirectory will be located and used. Failing that you can put it into your path or ~/bin/checkpatch.pl +If you want to change the defaults for patman's command-line arguments, +you can add a [settings] section to your .patman file. This can be used +for any command line option by referring to the "dest" for the option in +patman.py. For reference, the useful ones (at the moment) shown below +(all with the non-default setting): + +>>> + +[settings] +ignore_errors: True +process_tags: False +verbose: True + +<<< + + How to run it ============= |