summaryrefslogtreecommitdiff
path: root/tools/patman/__init__.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2026-07-05 13:32:17 -0600
committerTom Rini <trini@konsulko.com>2026-07-06 08:28:51 -0600
commit91b94aff149d2c6efe3afa81adaf5edcc6119221 (patch)
tree6491652282df172ec313e8d767c0b86b867052a6 /tools/patman/__init__.py
parentf7a4848a9ca37add093628a3f60fb79201eb5fe6 (diff)
downloadu-boot-91b94aff149d2c6efe3afa81adaf5edcc6119221.tar.gz
u-boot-91b94aff149d2c6efe3afa81adaf5edcc6119221.zip
patman: Remove the patch-management code
Delete the command-line tool and its supporting modules, now that this functionality lives in the standalone patch-manager package. Keep the modules that buildman still imports (commit and patchstream, plus their dependencies series, get_maintainer and settings), along with the stub command. Trim __init__.py to match. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/__init__.py')
-rw-r--r--tools/patman/__init__.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/patman/__init__.py b/tools/patman/__init__.py
index 0cca6f42435..bfe0f1fe946 100644
--- a/tools/patman/__init__.py
+++ b/tools/patman/__init__.py
@@ -1,8 +1,5 @@
# SPDX-License-Identifier: GPL-2.0+
__all__ = [
- 'checkpatch', 'cmdline', 'commit', 'control', 'cser_helper', 'cseries',
- 'database', 'func_test', 'get_maintainer', '__main__', 'patchstream',
- 'patchwork', 'project', 'send', 'series', 'settings', 'setup', 'status',
- 'test_checkpatch', 'test_common', 'test_cseries', 'test_settings'
+ 'commit', 'get_maintainer', 'patchstream', 'series', 'settings',
]