diff options
author | Tom Rini <trini@konsulko.com> | 2022-07-27 06:59:55 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-27 06:59:55 -0400 |
commit | 7277c4bddceb6b8a59ba47b8b111ab070d86919f (patch) | |
tree | 0bd1db6551763d178d25e80a350be458150c9e8e /tools/patman/main.py | |
parent | 81e712a91729950fbd8fb38a6f729cb9847b0adb (diff) | |
parent | dce4322c0e1940e11ef9ff086890b8c474707317 (diff) |
Merge tag 'dm-pull-26jul22' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm.git
minor dm- and fdt-related fixes
start of test for fdt command
Diffstat (limited to 'tools/patman/main.py')
-rwxr-xr-x | tools/patman/main.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/patman/main.py b/tools/patman/main.py index 66d4806c8d..15e7af0e54 100755 --- a/tools/patman/main.py +++ b/tools/patman/main.py @@ -81,6 +81,12 @@ send.add_argument('--no-binary', action='store_true', dest='ignore_binary', send.add_argument('--no-check', action='store_false', dest='check_patch', default=True, help="Don't check for patch compliance") +send.add_argument('--tree', dest='check_patch_use_tree', default=False, + action='store_true', + help=("Set `tree` to True. If `tree` is False then we'll " + "pass '--no-tree' to checkpatch (default: tree=%(default)s)")) +send.add_argument('--no-tree', dest='check_patch_use_tree', + action='store_false', help="Set `tree` to False") send.add_argument('--no-tags', action='store_false', dest='process_tags', default=True, help="Don't process subject tags as aliases") send.add_argument('--no-signoff', action='store_false', dest='add_signoff', |